:root {
  --black: #111418;
  --ink: #17191d;
  --muted: #626772;
  --paper: #ffffff;
  --soft: #f6f2ea;
  --line: rgba(17, 20, 24, 0.12);
  --red: #d9473f;
  --yellow: #c99a43;
  --green: #7cab42;
  --blue: #2c8fb7;
  --navy: #141923;
  --ivory: #faf7ef;
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --shadow-strong: 0 34px 110px rgba(0, 0, 0, 0.36);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(201, 154, 67, 0.07), transparent 34%),
    linear-gradient(270deg, rgba(44, 143, 183, 0.035), transparent 38%),
    var(--ivory);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.glass-nav {
  padding: 0.72rem 0;
  background: rgba(20, 25, 35, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: padding 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.glass-nav::after,
.site-footer::before,
.admin-card::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.glass-nav::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.glass-nav.is-scrolled {
  padding: 0.4rem 0;
  background: rgba(20, 25, 35, 0.96);
  box-shadow: 0 14px 42px rgba(13, 17, 23, 0.18);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 900;
}

.navbar-brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
  padding-left: 0.9rem !important;
  padding-right: 0.9rem !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #fff;
}

.navbar-toggler {
  border: 0;
  background: #fff;
  border-radius: var(--radius);
}

.btn {
  --bs-btn-padding-x: 1.05rem;
  --bs-btn-padding-y: 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 6px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  color: #111418;
  background: linear-gradient(135deg, #e8c986, var(--yellow));
  border: 1px solid rgba(201, 154, 67, 0.28);
  box-shadow: 0 12px 26px rgba(124, 89, 27, 0.2);
}

.btn-gold:hover,
.btn-gold:focus {
  color: #080808;
  background: linear-gradient(135deg, #edd59a, #bd8734);
  box-shadow: 0 16px 36px rgba(124, 89, 27, 0.28);
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
}

.btn-outline-dark {
  color: var(--black);
  border-color: rgba(5, 5, 5, 0.42);
}

.btn-outline-dark:hover {
  background: var(--black);
  border-color: var(--black);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(201, 154, 67, 0.12), transparent 0 18rem),
    radial-gradient(circle at 80% 38%, rgba(44, 143, 183, 0.08), transparent 0 20rem),
    var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 19, 27, 0.9) 0%, rgba(15, 19, 27, 0.66) 46%, rgba(15, 19, 27, 0.34) 100%),
    linear-gradient(180deg, rgba(15, 19, 27, 0.12), rgba(15, 19, 27, 0.88)),
    url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1900&q=84") center/cover;
  transform: scale(1.02);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 154, 67, 0.12), transparent 26%),
    linear-gradient(225deg, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo-mark {
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.hero-logo-mark img {
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
}

.hero-section h1,
.album-copy h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-section .lead {
  max-width: 46rem;
  margin: 1.15rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1.55vw, 1.13rem);
  line-height: 1.78;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.hero-local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.hero-local-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.62rem;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
}

.hero-local-tags span:nth-child(1) {
  border-left: 3px solid rgba(201, 154, 67, 0.9);
}

.hero-local-tags span:nth-child(2) {
  border-left: 3px solid rgba(201, 154, 67, 0.9);
}

.hero-local-tags span:nth-child(3) {
  border-left: 3px solid rgba(201, 154, 67, 0.9);
}

.hero-local-tags span:nth-child(4) {
  border-left: 3px solid rgba(201, 154, 67, 0.9);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 9.5rem));
  gap: 0.7rem;
  margin-bottom: 0;
}

.hero-metrics div,
.contact-tile {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 0.85rem;
  border-radius: var(--radius);
}

.hero-metrics div:nth-child(1) {
  border-top: 3px solid var(--yellow);
}

.hero-metrics div:nth-child(2) {
  border-top: 3px solid var(--yellow);
}

.hero-metrics div:nth-child(3) {
  border-top: 3px solid var(--yellow);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-tile {
  position: relative;
  padding: 1rem;
  color: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
}

.hero-showcase {
  position: relative;
  min-height: 35rem;
  margin: 5.8rem 0 3rem;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 2rem 2.4rem 1.2rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: translate(1rem, -1rem);
}

.hero-showcase::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4.5rem;
  width: 38%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}

.hero-showcase img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.showcase-main {
  right: 0;
  top: 0;
  width: min(82%, 28rem);
  height: 28rem;
}

.showcase-small {
  width: 11rem;
  height: 13.5rem;
  border: 4px solid var(--black);
}

.showcase-small.top {
  left: 0;
  top: 5.2rem;
}

.showcase-small.bottom {
  left: 2.6rem;
  bottom: 0;
}

.hero-showcase .contact-tile {
  position: absolute;
  right: 1.1rem;
  bottom: 1.5rem;
  width: min(88%, 21rem);
  z-index: 4;
  background: rgba(5, 5, 5, 0.78);
}

.contact-tile i {
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--yellow);
  font-size: 1.45rem;
}

.contact-tile span,
.contact-tile small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.contact-tile a {
  display: block;
  margin: 0.28rem 0 0.45rem;
  color: #fff;
  font-size: clamp(1.32rem, 3vw, 1.85rem);
  font-weight: 900;
}

.section-pad {
  padding: clamp(3.8rem, 7vw, 6rem) 0;
}

main > section {
  position: relative;
}

.muted-band {
  background:
    linear-gradient(90deg, rgba(201, 154, 67, 0.08), transparent 34%),
    #eee8dc;
}

.section-head {
  max-width: 820px;
  margin-bottom: 2.2rem;
}

.section-head.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.section-head h2,
.contact-section h2,
.admin-heading h1,
.instagram-panel h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.75rem, 3.7vw, 3.25rem);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: 0;
}

.section-copy {
  max-width: 46rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.96rem;
  font-weight: 650;
}

.service-card,
.package-card,
.inquiry-form,
.instagram-panel,
.admin-card,
.not-found-card,
.drive-fallback {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card {
  position: relative;
  height: 100%;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.row .col-md-4:nth-child(2) .service-card::before {
  background: var(--yellow);
}

.row .col-md-4:nth-child(3) .service-card::before {
  background: var(--yellow);
}

.service-card::before,
.package-card::before,
.admin-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--red);
}

.row .col-md-4:nth-child(1) .service-card::before {
  background: var(--yellow);
}

.service-card:hover,
.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card i {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.1rem;
  color: #1f2937;
  background: #ead7ab;
  border-radius: 6px;
  font-size: 1.25rem;
}

.service-card h3,
.package-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  font-weight: 900;
}

.service-card p,
.package-card p,
.contact-section p,
.instagram-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.94rem;
}

.studio-strip {
  padding: 0 0 clamp(4rem, 7vw, 6rem);
  background: #f7f7f5;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strip-grid div {
  min-height: 14.5rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
  color: #fff;
  background: #151b25;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.strip-grid div:nth-child(2) {
  background: #1d2633;
}

.strip-grid div:nth-child(3) {
  background: #202a36;
}

.strip-grid span {
  display: inline-block;
  padding-bottom: 0.2rem;
  color: var(--yellow);
  border-bottom: 3px solid currentColor;
  font-weight: 900;
}

.strip-grid div:nth-child(2) span {
  color: var(--yellow);
}

.strip-grid div:nth-child(3) span {
  color: var(--yellow);
}

.strip-grid strong {
  display: block;
  margin: 2.35rem 0 0.75rem;
  font-size: 1.08rem;
  font-weight: 900;
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}

.package-card {
  position: relative;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.package-card::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 3.2rem;
  height: 3.2rem;
  border-top: 10px solid rgba(255, 178, 62, 0.22);
  border-right: 10px solid rgba(201, 154, 67, 0.12);
}

.package-card:nth-child(3n + 1)::before {
  background: var(--yellow);
}

.package-card:nth-child(3n + 2)::before {
  background: var(--yellow);
}

.package-card:nth-child(3n + 3)::before {
  background: var(--yellow);
}

.package-card span,
.admin-item span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.62rem;
  color: #080808;
  background: #efe0bd;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card strong {
  display: block;
  margin: 0.2rem 0 1.1rem;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 0.62rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.package-card li {
  display: flex;
  gap: 0.55rem;
  color: #4f535a;
  font-size: 0.94rem;
  font-weight: 700;
}

.package-card li i {
  color: var(--green);
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(9rem, 16vw, 14rem);
  gap: 0.85rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.gallery-grid img:hover {
  transform: scale(1.018);
  filter: contrast(1.06) saturate(1.04);
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5) {
  grid-column: span 3;
}

.instagram-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.35rem, 4vw, 1.9rem);
  overflow: hidden;
  border-top: 4px solid var(--red);
}

.instagram-panel::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 5rem;
  height: 5rem;
  border-right: 18px solid var(--green);
  border-bottom: 18px solid var(--blue);
  opacity: 0.2;
}

.instagram-panel > * {
  position: relative;
  z-index: 1;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 25, 35, 0.96), rgba(20, 25, 35, 0.84)),
    url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=1700&q=84") center/cover;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(201, 154, 67, 0.12), transparent 30%);
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.7rem 0.45rem 0.45rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 900;
}

.contact-brand img {
  width: 2.45rem;
  height: 2.45rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.contact-section .eyebrow,
.contact-section p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-weight: 850;
}

.contact-list i {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  color: #080808;
  background: #ead7ab;
  border-radius: 6px;
}

.inquiry-form {
  position: relative;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-top: 4px solid var(--yellow);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(201, 154, 67, 0.08), transparent 34%),
    #ffffff;
}

.inquiry-form::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.form-panel-head {
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.form-panel-head span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  color: #080808;
  background: #efe0bd;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-panel-head h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 900;
}

.form-panel-head p {
  margin: 0.45rem 0 0;
  color: #575b63;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 650;
}

.form-label {
  color: #30333a;
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-section .form-label {
  color: #25272d;
}

.form-field {
  position: relative;
}

.form-field i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #9a7330;
  font-size: 1rem;
  pointer-events: none;
}

.textarea-field i {
  top: 1.05rem;
  transform: none;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  color: var(--ink);
  background-color: #f8fafc;
  border: 1px solid rgba(5, 5, 5, 0.22);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 750;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-field .form-control,
.form-field .form-select {
  padding-left: 2.75rem;
}

.contact-section .form-control,
.contact-section .form-select {
  background-color: #f8fafc;
  border-color: rgba(5, 5, 5, 0.22);
}

textarea.form-control {
  min-height: 8.2rem;
  padding-top: 0.92rem;
}

.form-control:focus,
.form-select:focus {
  background-color: #fff;
  border-color: var(--yellow);
  box-shadow: 0 0 0 0.2rem rgba(201, 154, 67, 0.2);
}

.form-control::placeholder,
.form-select:invalid {
  color: #6f7681;
  opacity: 1;
  font-weight: 700;
}

.form-select option {
  color: var(--ink);
  font-weight: 700;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.95rem 0 0;
  color: #9be26d;
  font-weight: 900;
}

.form-status.is-error {
  color: #ff9994;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.site-footer::before {
  width: 100%;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer strong,
.site-footer a {
  color: #fff;
  font-weight: 900;
}

.site-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.site-footer img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  width: 3.45rem;
  height: 3.45rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
  font-size: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 50px rgba(37, 211, 102, 0.42);
}

.album-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(201, 154, 67, 0.12), transparent 34%),
    var(--navy);
  color: #fff;
}

.album-shell {
  padding: clamp(1.2rem, 4vw, 2.5rem) 0 0;
}

.album-card {
  display: grid;
  grid-template-columns: minmax(14rem, 0.8fr) minmax(0, 1.2fr);
  gap: 1.1rem;
  align-items: stretch;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.album-cover {
  min-height: 17rem;
  border-radius: 6px;
  overflow: hidden;
}

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

.album-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.brand-mini {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 900;
}

.brand-mini img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.album-copy p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  font-size: 0.96rem;
}

.album-date {
  color: var(--yellow) !important;
  font-weight: 900;
}

.album-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.album-viewer {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: #f7f7f5;
  color: var(--ink);
}

.album-viewer iframe {
  width: 100%;
  height: 68vh;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.album-studio-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  margin: 1rem 0 clamp(1.2rem, 4vw, 2.2rem);
  padding: 0.85rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.album-studio-card img {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
}

.album-studio-card span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.album-studio-card strong {
  display: block;
  margin: 0.05rem 0 0.2rem;
  font-weight: 900;
}

.album-studio-card p {
  margin: 0.1rem 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 700;
}

.album-studio-card i {
  color: var(--yellow);
}

.studio-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.drive-fallback,
.not-found-card {
  padding: 2rem;
  color: var(--ink);
}

.not-found-card {
  width: min(100% - 2rem, 620px);
  margin: 8rem auto;
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(201, 154, 67, 0.07), transparent 32%),
    #f3f1eb;
}

.admin-shell {
  width: min(100% - 2rem, 1180px);
  margin: 2rem auto;
}

.admin-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.admin-card::before {
  width: 100%;
}

.admin-card > *:not(.toast-stack) {
  margin-left: clamp(1rem, 2vw, 1.45rem);
  margin-right: clamp(1rem, 2vw, 1.45rem);
}

.admin-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  margin-bottom: 1rem;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  color: var(--black);
  font-weight: 900;
}

.admin-brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.admin-heading p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-stat-grid div {
  padding: 1rem;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--yellow);
}

.admin-stat-grid div:nth-child(2) {
  border-bottom-color: var(--yellow);
}

.admin-stat-grid div:nth-child(3) {
  border-bottom-color: var(--yellow);
}

.admin-stat-grid i {
  color: var(--yellow);
  font-size: 1.22rem;
}

.admin-stat-grid span,
.admin-stat-grid strong {
  display: block;
}

.admin-stat-grid span {
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-stat-grid strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.login-form,
.admin-form {
  padding: 1rem;
  background: #f9fafb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.admin-tabs {
  gap: 0.35rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0.32rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  background: #f3f5f7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-tabs .nav-link {
  color: var(--ink);
  border-radius: 5px;
  font-weight: 900;
}

.admin-tabs .nav-link.active {
  color: #fff;
  background: var(--navy);
}

.tab-content {
  padding-bottom: 1.35rem;
}

.admin-actions,
.admin-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.admin-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.admin-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1rem 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-item::before {
  background: var(--blue);
}

.admin-item strong,
.admin-item span {
  display: block;
}

.admin-item strong {
  font-size: 0.98rem;
}

.admin-item p {
  margin: 0.4rem 0;
  color: var(--muted);
  word-break: break-word;
}

.admin-item small,
.empty-admin {
  color: var(--muted);
  font-weight: 700;
}

.toast-stack {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 100;
  width: min(calc(100% - 2rem), 540px);
  transform: translateX(-50%);
  display: grid;
  gap: 0.5rem;
  pointer-events: none;
}

.mini-toast {
  padding: 0.86rem 1rem;
  color: #fff;
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  text-align: center;
  font-weight: 900;
}

@media (max-width: 991px) {
  .hero-section h1 {
    font-size: clamp(3rem, 12vw, 5.6rem);
  }

  .contact-tile,
  .hero-metrics {
    margin-bottom: 2.5rem;
  }

  .hero-showcase {
    min-height: 31rem;
    margin: 0 0 3.5rem;
  }

  .showcase-main {
    width: min(82%, 32rem);
    height: 24rem;
  }

  .section-head.split,
  .instagram-panel,
  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .album-card,
  .album-studio-card {
    grid-template-columns: 1fr;
  }

  .studio-card-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 767px) {
  .hero-metrics,
  .admin-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-mark {
    width: 4.1rem;
    height: 4.1rem;
  }

  .hero-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .hero-showcase::before,
  .hero-showcase::after {
    display: none;
  }

  .hero-showcase img,
  .showcase-main,
  .showcase-small,
  .showcase-small.top,
  .showcase-small.bottom,
  .hero-showcase .contact-tile {
    position: static;
    width: 100%;
  }

  .showcase-main {
    grid-column: 1 / -1;
    height: 22rem;
  }

  .showcase-small {
    height: 11rem;
    border: 0;
  }

  .hero-showcase .contact-tile {
    grid-column: 1 / -1;
  }

  .hero-logo-mark img {
    width: 4.1rem;
    height: 4.1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 11rem;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid img:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    width: auto;
    max-width: calc(100% - 2rem);
  }
}

@media (max-width: 430px) {
  .navbar-brand span {
    font-size: 1rem;
  }

.hero-section h1,
  .album-copy h1 {
    font-size: clamp(2.65rem, 15vw, 3.65rem);
  }

  .hero-actions .btn,
  .album-actions .btn,
  .studio-card-actions .btn,
  .section-head.split .btn,
  .inquiry-form .btn {
    width: 100%;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-main,
  .showcase-small {
    height: 15rem;
  }

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

  .gallery-grid img,
  .gallery-grid img:nth-child(1) {
    grid-column: 1;
    grid-row: span 1;
  }

  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

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


.loading {
  opacity: 0.7;
  pointer-events: none;
}

.spinner-border {
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin .75s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
