:root {
  --bg: #071019;
  --bg-soft: #111c28;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #eff3fb;
  --muted: #aab4c6;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d3aa55;
  --gold-strong: #f1ca7e;
  --orange: #f05a22;
  --green: #31cf7a;
  --danger: #ef6f6a;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.22);
  --radius-xl: 32px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 5%, rgba(211, 170, 85, 0.15), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(46, 90, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #050a10 0%, #09131d 34%, #0d1824 100%);
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.6;
}

.ambient-one {
  top: 160px;
  right: -110px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(64, 112, 255, 0.2), transparent 72%);
}

.ambient-two {
  top: 1180px;
  left: -110px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(211, 170, 85, 0.16), transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(6, 11, 18, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #050505;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.15);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

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

.site-nav a,
.admin-nav-btn {
  color: #d8e0ec;
  font-size: 0.96rem;
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-strong);
}

.admin-nav-btn {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

body.admin-authenticated .admin-nav-btn {
  background: rgba(49, 207, 122, 0.12);
  border-color: rgba(49, 207, 122, 0.34);
  color: #dffdea;
}

.nav-cta,
.btn,
.upload-button,
.gallery-action,
.admin-logout-btn {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #17120a !important;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(211, 170, 85, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(980px, 100vh);
  display: flex;
  align-items: stretch;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(4, 10, 16, 0.95) 0%, rgba(4, 10, 16, 0.85) 38%, rgba(4, 10, 16, 0.54) 72%, rgba(4, 10, 16, 0.74) 100%),
    linear-gradient(180deg, rgba(5, 11, 17, 0.12) 0%, rgba(5, 11, 17, 0.82) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 42px;
  align-items: end;
  padding: 132px 0 88px;
}

.eyebrow,
.section-tag,
.card-kicker,
.gallery-upload-tag,
.confirm-tag {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--gold-strong);
}

.hero-copy h1,
.section-head h2,
.section-copy h2,
.contact-copy h2 {
  margin: 14px 0 18px;
  font-family: "Syne", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.hero-text {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.84;
  color: #d7dfed;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
}

.btn:hover,
.upload-button:hover,
.gallery-action:hover,
.admin-logout-btn:hover,
.nav-cta:hover,
.admin-nav-btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.upload-button {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #17120a;
  box-shadow: 0 16px 38px rgba(211, 170, 85, 0.24);
}

.btn-secondary,
.gallery-action,
.admin-logout-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-danger,
.gallery-action-danger {
  background: rgba(239, 111, 106, 0.12);
  border: 1px solid rgba(239, 111, 106, 0.28);
  color: #ffd8d6;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe6f2;
  font-size: 0.9rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.glass-card {
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card {
  width: min(100%, 430px);
  padding: 30px;
  border-radius: var(--radius-xl);
}

.stat-grid,
.highlight-grid,
.services-grid,
.testimonial-grid,
.review-stats-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.stat-grid article,
.highlight-card,
.service-card,
.testimonial-card,
.contact-card,
.booking-form,
.gallery-admin-card,
.gallery-managed,
.review-stat-card,
.info-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat-grid article {
  padding: 20px;
  border-radius: 22px;
}

.stat-grid strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2.4rem;
  color: var(--gold-strong);
}

.stat-grid span,
.hero-card-list span,
.contact-card span,
.gallery-card-copy p {
  color: var(--muted);
}

.hero-card-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-card-list div {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-list strong {
  display: block;
  margin-top: 6px;
}

.highlights {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

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

.highlight-card {
  padding: 28px;
  border-radius: 28px;
}

.highlight-number {
  margin: 0 0 12px;
  font-family: "Syne", sans-serif;
  color: var(--gold-strong);
}

.highlight-card h2 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.highlight-card p,
.section-head p,
.section-copy p,
.testimonial-card p,
.review-stat-card p,
.gallery-admin-card p,
.gallery-note,
.gallery-empty p,
.contact-copy p,
.form-note,
.login-note,
.confirm-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  padding: 112px 0;
}

.section-grid,
.contact-grid,
.gallery-layout,
.footer-grid {
  display: grid;
  gap: 24px;
}

.section-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2,
.section-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.review-stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-stat-card {
  min-height: 240px;
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  color: #11151d;
}

.review-stat-card--featured {
  border-color: rgba(240, 90, 34, 0.62);
  box-shadow: 0 18px 40px rgba(240, 90, 34, 0.12);
}

.review-stat-value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.review-stat-value strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.review-stat-value span {
  color: var(--orange);
  font-size: 2.2rem;
  font-weight: 800;
}

.rating-star {
  line-height: 0.8;
}

.review-stat-card h3 {
  margin: 22px 0 0;
  font-size: 1.76rem;
  line-height: 1.08;
}

.review-stat-card p {
  margin-top: 14px;
  color: #5a6676;
}

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

.testimonial-card {
  padding: 26px;
  border-radius: 28px;
}

.star-row {
  color: var(--gold-strong);
  letter-spacing: 0.16em;
}

.testimonial-card h3,
.gallery-managed-head h3 {
  margin: 18px 0 12px;
}

.bullet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
}

.info-card h3 {
  margin: 0 0 12px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

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

.photo-stack {
  position: relative;
  min-height: 640px;
}

.photo-large,
.photo-small {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.photo-large {
  width: 72%;
  height: 640px;
}

.photo-small {
  position: absolute;
  right: 0;
  bottom: 34px;
  width: 46%;
  height: 390px;
}

.photo-large img,
.photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-card {
  padding: 28px;
  border-radius: 28px;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: rgba(211, 170, 85, 0.14);
  color: var(--gold-strong);
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;
}

.service-card--accent {
  background:
    radial-gradient(circle at top right, rgba(49, 207, 122, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.service-card--accent a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-strong);
  font-weight: 800;
}

.gallery-layout {
  grid-template-columns: 380px minmax(0, 1fr);
  align-items: start;
}

.gallery-sidebar {
  position: sticky;
  top: 108px;
}

.gallery-admin-card,
.gallery-managed {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.gallery-admin-card {
  position: relative;
  overflow: hidden;
}

.gallery-admin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 202, 126, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(49, 207, 122, 0.14), transparent 22%);
  pointer-events: none;
}

.guest-view,
.admin-panel {
  position: relative;
  z-index: 1;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-logout-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
}

.is-hidden {
  display: none !important;
}

.admin-actions {
  margin-top: 20px;
}

.gallery-upload-tag {
  margin: 0 0 8px;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  margin-top: 6px;
  border-radius: 999px;
  font-weight: 800;
}

.admin-actions input {
  display: none;
}

.gallery-note,
.login-note,
.form-note {
  margin-top: 14px;
}

.gallery-note[data-state="success"],
.login-note[data-state="success"],
#editor-note[data-state="success"] {
  color: #d9ffe8;
}

.gallery-note[data-state="error"],
.login-note[data-state="error"],
#editor-note[data-state="error"] {
  color: #ffc8c5;
}

.admin-editor {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.admin-editor h4 {
  margin: 0;
  font-size: 1.1rem;
}

.contact-editor-panel {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-editor label,
.booking-form label,
.login-card label {
  display: grid;
  gap: 10px;
  color: #dfe6f2;
}

.admin-editor input,
.admin-editor textarea,
.booking-form input,
.booking-form select,
.booking-form textarea,
.login-card input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 15px 16px;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.admin-editor input:focus,
.admin-editor textarea:focus,
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.login-card input:focus {
  border-color: rgba(241, 202, 126, 0.62);
  box-shadow: 0 0 0 4px rgba(241, 202, 126, 0.12);
}

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

.editor-grid-span {
  grid-column: 1 / -1;
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-content {
  display: grid;
  gap: 22px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
}

.gallery-grid-featured {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-grid-uploaded {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 202, 126, 0.26);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.gallery-card:nth-child(1) {
  grid-column: span 7;
}

.gallery-card:nth-child(2) {
  grid-column: span 5;
}

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

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.gallery-card-uploaded img {
  height: 220px;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  padding: 16px;
  background: linear-gradient(180deg, rgba(5, 11, 17, 0.16), rgba(5, 11, 17, 0.76));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gallery-card:hover .gallery-card-overlay,
.gallery-card:focus-within .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-action {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}

.gallery-card-copy {
  padding: 18px;
}

.gallery-card-copy h4 {
  margin: 0 0 8px;
}

.gallery-managed-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.gallery-managed-head span {
  color: var(--muted);
  font-size: 0.94rem;
}

.gallery-empty {
  padding: 30px 24px;
  text-align: center;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
}

.gallery-empty[hidden] {
  display: none;
}

.contact-cards {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(26, 38, 52, 0.9), rgba(18, 28, 40, 0.86));
}

.contact-card strong {
  text-align: right;
  font-size: 1.05rem;
}

.booking-form {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.booking-form h3,
.login-card h3 {
  margin: 0 0 18px;
  font-family: "Syne", sans-serif;
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.66);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #d9e1ee;
}

.creator-credit {
  padding: 0 0 96px;
}

.creator-credit-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.creator-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  color: var(--gold-strong);
}

.creator-credit h3 {
  margin: 0 0 10px;
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
}

.creator-credit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.creator-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.creator-links a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe7f3;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 56px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #18a44c, #39e17f);
  color: white;
  font-weight: 800;
  box-shadow: 0 20px 38px rgba(35, 197, 110, 0.34);
}

.lightbox,
.confirm-dialog {
  width: min(92vw, 1100px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 12, 0.94);
  color: var(--text);
  border-radius: 24px;
  padding: 18px;
}

.confirm-dialog,
.login-dialog {
  width: min(92vw, 560px);
}

.confirm-dialog {
  padding: 0;
}

.lightbox::backdrop,
.confirm-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox p {
  margin: 14px 6px 4px;
  color: var(--muted);
}

.lightbox-close {
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-size: 1.5rem;
}

.confirm-card {
  padding: 30px;
}

.login-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(241, 202, 126, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(49, 207, 122, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.login-card::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -30px;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(241, 202, 126, 0.22), rgba(49, 207, 122, 0.12));
  transform: rotate(18deg);
}

.login-card > * {
  position: relative;
  z-index: 1;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(211, 170, 85, 0.24);
  }

  50% {
    box-shadow: 0 22px 48px rgba(211, 170, 85, 0.34);
  }
}

.hero-card,
.gallery-admin-card {
  animation: floatSoft 6s ease-in-out infinite;
}

.btn-primary,
.upload-button {
  animation: pulseGlow 4.6s ease-in-out infinite;
}

@media (max-width: 1160px) {
  .hero-grid,
  .section-grid,
  .contact-grid,
  .gallery-layout,
  .footer-grid,
  .creator-credit-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .services-grid,
  .testimonial-grid,
  .review-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .gallery-sidebar {
    position: static;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 18px;
    border-radius: 24px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8, 13, 19, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .highlight-grid,
  .services-grid,
  .testimonial-grid,
  .review-stats-grid,
  .bullet-grid,
  .editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-nav-btn {
    width: 100%;
  }

  .hero-grid {
    padding: 118px 0 86px;
  }

  .highlights {
    margin-top: 0;
    padding-top: 26px;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-large,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
  }

  .photo-small {
    margin-top: 18px;
  }

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

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

  .gallery-managed-head,
  .admin-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-card strong {
    text-align: left;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    justify-content: center;
    bottom: 12px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 2.76rem;
  }

  .hero-actions .btn,
  .nav-cta,
  .admin-nav-btn,
  .btn-full,
  .confirm-actions .btn {
    width: 100%;
  }

  .stat-grid,
  .gallery-grid-featured,
  .gallery-grid-uploaded {
    grid-template-columns: 1fr;
  }

  .section,
  .hero-grid {
    padding-bottom: 84px;
  }

  .confirm-actions {
    flex-direction: column-reverse;
  }

  .booking-form,
  .gallery-admin-card,
  .gallery-managed,
  .review-stat-card,
  .service-card,
  .testimonial-card,
  .highlight-card,
  .confirm-card {
    padding: 22px;
  }
}
