:root {
  color-scheme: light;
  --ink: #081b35;
  --muted: #62748d;
  --line: #d2e2f1;
  --paper: #021425;
  --soft: #eaf8ff;
  --blue-deep: #063b6e;
  --blue: #008cff;
  --blue-light: #00d4ff;
  --orange: #ff7900;
  --orange-soft: #ffb000;
  --charcoal: #081b35;
  --white: #ffffff;
  --brand-gradient: linear-gradient(135deg, #021425 0%, #063b6e 56%, #05aeea 100%);
  --accent-gradient: linear-gradient(135deg, #ff7900 0%, #ffb000 100%);
  --blue-gradient: linear-gradient(135deg, #008cff 0%, #00d4ff 100%);
  --panel: rgba(255, 255, 255, 0.96);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 22px 55px rgba(0, 35, 80, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 212, 255, 0.28), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(255, 121, 0, 0.18), transparent 28%),
    linear-gradient(135deg, #021425 0%, #063b6e 56%, #05aeea 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

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

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  align-items: center;
  background: var(--white);
  border-radius: 20px;
  box-shadow: none;
  display: inline-flex;
  height: 46px;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  width: 64px;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--white);
}

.brand small {
  color: #bfefff;
  font-size: 0.78rem;
  margin-top: 4px;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 30px);
  color: var(--white);
  font-weight: 700;
  justify-content: flex-end;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  transform: translateY(-1px);
}

.nav a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  transition: 0.2s ease;
}

.hero {
  background: var(--charcoal);
  display: grid;
  min-height: min(760px, calc(100vh - 118px));
  overflow: hidden;
  position: relative;
}

.hero-mosaic {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-shot {
  display: block;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  width: 100%;
}

.hero-shot-wide {
  grid-column: 1 / 7;
  grid-row: 1 / 4;
  object-position: 50% 54%;
}

.hero-shot-tall {
  grid-column: 7 / 10;
  grid-row: 1 / 7;
  object-position: 50% 42%;
}

.hero-shot-field {
  grid-column: 10 / 13;
  grid-row: 1 / 4;
  object-position: 52% 50%;
}

.hero-shot-kids {
  grid-column: 1 / 5;
  grid-row: 4 / 7;
  object-position: 48% 46%;
}

.hero-shot-runner {
  grid-column: 5 / 13;
  grid-row: 4 / 7;
  object-position: 50% 46%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 27, 53, 0.92) 0%, rgba(8, 27, 53, 0.7) 33%, rgba(8, 120, 197, 0.28) 68%, rgba(8, 27, 53, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 42, 133, 0.28), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  align-self: center;
  color: var(--white);
  max-width: min(660px, 92vw);
  padding: clamp(42px, 8vh, 84px) clamp(20px, 6vw, 72px);
  position: relative;
  z-index: 1;
}

.hero-logo {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(8, 27, 53, 0.2);
  display: block;
  height: auto;
  margin-bottom: 24px;
  max-width: min(260px, 62vw);
  object-fit: contain;
  padding: 14px 18px;
  width: 100%;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb677;
}

.albums-page {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1.45fr);
  min-height: calc(100vh - 80px);
  padding: clamp(22px, 4vw, 52px);
}

.albums-copy {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 248, 255, 0.92)),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  min-width: 0;
  padding: clamp(24px, 4vw, 44px);
}

.albums-copy h1 {
  color: var(--ink);
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  margin-bottom: 18px;
}

.albums-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
}

.albums-copy .button.secondary {
  background: #e8f4ff;
  border-color: #cfe4f6;
  color: #25557e;
}

.albums-frame {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: minmax(540px, 1fr) auto;
  min-height: min(780px, calc(100vh - 128px));
  min-width: 0;
  overflow: hidden;
}

.albums-frame iframe {
  border: 0;
  height: 100%;
  min-height: 540px;
  width: 100%;
}

.embed-fallback {
  align-items: center;
  background: linear-gradient(135deg, #061b34, #074f93 62%, #00bfe8);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: center;
  padding: 12px 16px;
  text-align: center;
}

.embed-fallback a {
  color: #ffd198;
  font-weight: 900;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  margin-bottom: 22px;
  overflow-wrap: anywhere;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 0.96;
  margin-bottom: 0;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.hero-copy p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 570px;
}

.hero-actions,
.filters,
.schedule-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.filter {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 15px;
}

.button.primary {
  background: var(--accent-gradient);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(255, 121, 0, 0.28);
}

.button.secondary,
.filter {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button:hover,
.filter:hover,
.filter.active {
  transform: translateY(-1px);
}

.band {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 118px;
}

.intro div {
  border-right: 1px solid rgba(255, 253, 248, 0.16);
  padding: 28px clamp(18px, 5vw, 56px);
}

.intro span {
  color: #f3bd78;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.85;
}

.intro p {
  color: rgba(255, 253, 248, 0.78);
  margin: 10px 0 0;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 64px);
}

.section-heading h2 {
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto 30px;
  max-width: 1180px;
}

.filters {
  margin: 0 auto 22px;
  max-width: 1180px;
}

.filter {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 40, 90, 0.1);
  color: #34516f;
  border-radius: 999px;
}

.filter.active {
  background: var(--accent-gradient);
  color: var(--white);
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.photo-card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 40, 90, 0.16);
  min-width: 0;
  overflow: hidden;
  padding: 10px 10px 18px;
}

.photo-card.span-wide {
  grid-column: span 2;
}

.photo-card.span-tall {
  grid-row: span 2;
}

.photo-card[hidden] {
  display: none;
}

.photo-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.photo-card h3,
.photo-card p {
  padding-inline: 8px;
}

.photo-tile {
  align-items: center;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(8, 42, 133, 0.08), rgba(19, 181, 232, 0.16)),
    #f0f7fc;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.span-wide .photo-tile {
  aspect-ratio: 16 / 10;
}

.photo-tile img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.agenda-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    transparent;
}

.standalone-agenda {
  min-height: calc(100vh - 71px);
}

.auth-panel {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 255, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto 18px;
  max-width: 1180px;
  padding: clamp(18px, 3vw, 26px);
}

.auth-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.auth-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.auth-panel .button.secondary {
  background: #e8f4ff;
  border-color: #cfe4f6;
  color: #25557e;
}

.private-agenda-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 255, 0.94)),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}

.private-agenda-panel h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  margin-bottom: 14px;
}

.private-agenda-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 640px;
}

.workspace {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.booking-form,
.import-panel,
.schedule-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
}

.import-panel {
  display: grid;
  gap: 16px;
  grid-column: span 8;
  grid-template-columns: minmax(240px, 0.85fr) minmax(210px, 0.45fr) minmax(260px, 1fr);
}

.import-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.import-panel p:not(.eyebrow):not(.import-status) {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.upload-box {
  align-content: center;
  background: var(--soft);
  border: 1px dashed var(--blue-light);
  border-radius: 18px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  min-height: 150px;
  padding: 18px;
  text-align: center;
}

.upload-box input {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.upload-box span {
  font-size: 1rem;
  font-weight: 900;
}

.upload-box small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 6px;
}

.screenshot-preview {
  align-self: stretch;
  border: 1px solid var(--line);
  max-height: 230px;
  object-fit: cover;
  width: 100%;
}

.import-text {
  grid-column: 1 / -1;
}

.import-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1 / -1;
}

.import-actions .button.secondary {
  background: #e8f4ff;
  border-color: #cfe4f6;
  color: #25557e;
}

.import-status {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  grid-column: 1 / -1;
  margin: 0;
}

.import-status[data-tone="success"] {
  color: var(--blue);
}

.import-status[data-tone="error"] {
  color: var(--orange);
}

.import-status[data-tone="working"] {
  color: var(--blue-light);
}

.booking-form {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
}

.booking-form label:nth-of-type(1) {
  grid-column: span 3;
}

.booking-form label:nth-of-type(2),
.booking-form label:nth-of-type(3),
.booking-form label:nth-of-type(4),
.booking-form label:nth-of-type(6) {
  grid-column: span 2;
}

.booking-form label:nth-of-type(5) {
  grid-column: span 3;
}

label,
.schedule-tools input,
.schedule-tools select,
.schedule-tools .button {
  min-width: 0;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 7px;
}

.notes,
.form-actions {
  grid-column: 1 / -1;
}

.booking-form .notes {
  grid-column: span 10;
}

.form-actions {
  align-items: stretch;
  display: flex;
  gap: 10px;
  grid-column: span 2;
}

.form-actions .button {
  align-self: end;
  flex: 1 1 auto;
  min-height: 43px;
}

.form-actions .button.primary {
  background: var(--blue-gradient);
  box-shadow: 0 14px 28px rgba(0, 140, 255, 0.2);
}

.form-actions .button.secondary {
  background: #eef7ff;
  border-color: #cfe4f6;
  color: #25557e;
}

input,
select,
textarea {
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  min-height: 43px;
  padding: 10px 12px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
  outline: none;
}

textarea {
  resize: vertical;
}

.schedule-panel {
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
}

.schedule-tools {
  align-items: center;
  width: 100%;
}

.schedule-tools input {
  flex: 1 1 260px;
  min-width: 180px;
}

.schedule-tools input[type="date"] {
  flex: 0 1 170px;
}

.schedule-tools select {
  flex: 0 1 190px;
}

.schedule-tools .button.secondary {
  background: #e8f4ff;
  border-color: #cfe4f6;
  color: #25557e;
  flex: 0 0 auto;
}

.day-summary {
  align-self: stretch;
  display: grid;
  gap: 14px;
  grid-column: span 4;
  min-width: 0;
  padding-right: 4px;
}

.day-summary section {
  background: linear-gradient(135deg, #061b34, #074f93 62%, #00bfe8);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 35, 80, 0.22);
  color: var(--white);
  overflow: hidden;
  padding: 16px;
}

.calendar-panel {
  display: grid;
  gap: 12px;
}

.calendar-head {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
}

.calendar-head h3 {
  margin: 0;
  text-align: center;
}

.calendar-head button,
.calendar-day {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.calendar-head button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  height: 34px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
}

.calendar-day {
  align-content: space-between;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  color: var(--white);
  display: grid;
  min-width: 0;
  padding: 5px;
}

.calendar-day:hover,
.calendar-day.selected {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.56);
}

.calendar-day.today {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.calendar-day.empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.calendar-number {
  font-size: 0.75rem;
  font-weight: 900;
}

.calendar-slots {
  display: grid;
  gap: 3px;
}

.slot-bar {
  border-radius: 999px;
  height: 5px;
  opacity: 0.28;
}

.slot-bar.morning {
  background: #00d4ff;
}

.slot-bar.afternoon {
  background: #ffb000;
}

.slot-bar.has-event {
  opacity: 0.74;
}

.slot-bar.confirmed {
  opacity: 1;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar-legend span {
  align-items: center;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 6px;
}

.calendar-legend i {
  border-radius: 999px;
  display: inline-block;
  height: 8px;
  width: 18px;
}

.morning-dot {
  background: #00d4ff;
}

.afternoon-dot {
  background: #ffb000;
}

.calendar-day-panel {
  align-self: start;
}

.day-summary .mini-event-list {
  max-height: 210px;
  overflow-y: auto;
  padding-right: 3px;
}

.day-summary section + section {
  background: linear-gradient(135deg, #ffb000, #ff7900);
  color: #172033;
}

.day-summary h3 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.calendar-event-group {
  display: grid;
  gap: 8px;
}

.calendar-event-group + .calendar-event-group {
  margin-top: 12px;
}

.calendar-event-group > span {
  font-size: 0.72rem;
  font-weight: 900;
  opacity: 0.78;
  text-transform: uppercase;
}

.mini-event-list {
  display: grid;
  gap: 9px;
}

.mini-event {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  display: grid;
  gap: 3px;
  padding: 10px;
}

.day-summary section + section .mini-event {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(255, 255, 255, 0.44);
}

.mini-event span {
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0.82;
}

.mini-event strong {
  font-size: 0.9rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mini-empty {
  font-size: 0.84rem;
  font-weight: 800;
  margin: 0;
  opacity: 0.82;
}

.schedule-list {
  display: grid;
  gap: 12px;
}

.booking {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 40, 90, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  padding: 15px;
}

.booking > div {
  min-width: 0;
}

.booking strong {
  display: block;
  font-size: 1.03rem;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.booking-distance {
  color: #0c86c8;
  font-weight: 900;
  white-space: nowrap;
}

.booking p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.booking-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.88rem;
  gap: 8px 14px;
  min-width: 0;
}

.booking-meta span {
  overflow-wrap: anywhere;
}

.status {
  align-self: start;
  background: var(--blue-gradient);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 10px;
  white-space: nowrap;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.edit,
.delete {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  padding: 6px 0;
}

.edit {
  color: var(--blue);
}

.delete {
  color: var(--orange);
}

.empty {
  background: rgba(255, 255, 255, 0.94);
  border: 1px dashed rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 40, 90, 0.12);
  color: var(--muted);
  padding: 24px;
  text-align: center;
}

.contact {
  align-items: center;
  background: var(--brand-gradient);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(40px, 7vw, 76px) clamp(18px, 5vw, 64px);
}

.contact > div {
  max-width: 670px;
}

.contact .eyebrow {
  color: #ffb677;
}

.contact p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.82);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact h2 {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  margin: 0 0 18px;
}

.contact-links {
  display: grid;
  gap: 16px;
  min-width: min(430px, 100%);
}

.contact-group {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.contact-group span {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-button {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--ink);
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
}

.contact-button:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .albums-page {
    grid-template-columns: 1fr;
  }

  .albums-frame {
    min-height: 640px;
  }

  .portfolio-grid,
  .import-panel,
  .workspace {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card.span-wide,
  .photo-card.span-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .import-panel,
  .day-summary,
  .booking-form,
  .schedule-panel {
    grid-column: 1 / -1;
  }

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

  .booking-form label:nth-of-type(n),
  .form-actions {
    grid-column: span 1;
  }

  .booking-form .notes {
    grid-column: 1 / -1;
  }

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

@media (max-width: 680px) {
  .albums-page {
    padding: 16px;
  }

  .albums-copy,
  .albums-frame {
    border-radius: 20px;
  }

  .albums-frame {
    grid-template-rows: minmax(480px, 1fr) auto;
    min-height: 560px;
  }

  .albums-frame iframe {
    min-height: 480px;
  }

  .topbar,
  .section-heading,
  .auth-panel,
  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-links {
    width: 100%;
  }

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: calc(100vh - 150px);
  }

  .hero-mosaic {
    gap: 3px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }

  .hero-shot-wide {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }

  .hero-shot-tall {
    grid-column: 1 / 4;
    grid-row: 3 / 7;
  }

  .hero-shot-field {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .hero-shot-kids {
    grid-column: 4 / 7;
    grid-row: 5 / 7;
  }

  .hero-shot-runner {
    grid-column: 1 / 7;
    grid-row: 7 / 9;
  }

  .hero-copy {
    align-self: center;
    padding-bottom: 42px;
    padding-top: 42px;
  }

  .hero-logo {
    max-width: min(220px, 76vw);
  }

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

  .band,
  .portfolio-grid,
  .import-panel,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form label:nth-of-type(n),
  .booking-form .notes,
  .form-actions {
    grid-column: 1 / -1;
  }

  .form-actions {
    flex-direction: column;
  }

  .day-summary {
    grid-template-columns: 1fr;
  }

  .schedule-tools input,
  .schedule-tools input[type="date"],
  .schedule-tools select,
  .schedule-tools .button {
    flex-basis: 100%;
    width: 100%;
  }

  .day-summary .mini-event-list {
    max-height: 180px;
  }

  .span-wide .photo-tile {
    aspect-ratio: 4 / 5;
  }

  .intro div {
    border-bottom: 1px solid rgba(255, 253, 248, 0.16);
    border-right: 0;
  }

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

  .status {
    justify-self: start;
  }
}
  border-radius: 15px;
  border-radius: 18px;
