:root {
  --pink-50: #fff7fa;
  --pink-100: #ffeaf1;
  --pink-200: #f8d8e2;
  --pink-300: #efb6ca;
  --pink-500: #dc6f96;
  --rose-black: #111013;
  --ink: #1b1719;
  --muted: #6c6268;
  --soft-gray: #f2eff0;
  --white: #ffffff;
  --champagne: #e9c98d;
  --shadow: 0 22px 60px rgba(32, 21, 26, 0.14);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 232, 241, 0.9), transparent 28rem),
    linear-gradient(180deg, var(--pink-50), var(--white) 34rem);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.preview-strip {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 0.35rem;
  min-height: 34px;
  padding: 0.45rem 1rem;
  color: var(--rose-black);
  background: linear-gradient(90deg, #fff, var(--pink-100), #fff);
  border-bottom: 1px solid rgba(17, 16, 19, 0.08);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
}

.preview-strip span {
  min-width: 0;
}

.preview-detail {
  overflow-wrap: anywhere;
}

.preview-watermark {
  position: fixed;
  right: clamp(0.6rem, 2vw, 1.5rem);
  bottom: clamp(4.7rem, 8vw, 2rem);
  z-index: 45;
  pointer-events: none;
  padding: 0.35rem 0.75rem;
  color: rgba(17, 16, 19, 0.62);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 16, 19, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(32, 21, 26, 0.1);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: 1.15rem 0;
  color: var(--white);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  text-decoration: none;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.brand-script {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-by {
  color: var(--pink-200);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.95rem;
  font-style: italic;
}

.main-nav {
  display: none;
  gap: 1rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.main-nav a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 7.25rem 1rem 5rem;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.76), rgba(17, 16, 19, 0.42), rgba(239, 182, 202, 0.18)),
    url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--pink-50);
  clip-path: polygon(0 50%, 7% 44%, 15% 61%, 26% 39%, 36% 55%, 45% 40%, 58% 58%, 69% 41%, 81% 56%, 92% 45%, 100% 60%, 100% 100%, 0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 34%, rgba(0, 0, 0, 0.48)),
    radial-gradient(circle at 74% 25%, rgba(248, 216, 226, 0.28), transparent 18rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  max-width: calc(100vw - 2rem);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--pink-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--pink-200);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: min(760px, calc(100vw - 2rem));
  font-size: clamp(4rem, 14vw, 9rem);
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.5);
}

h2 {
  color: var(--rose-black);
  font-size: clamp(2.25rem, 7vw, 5rem);
}

h3 {
  color: var(--rose-black);
  font-size: clamp(1.45rem, 5vw, 2rem);
}

.hero-tagline {
  max-width: min(610px, calc(100vw - 2rem));
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 3vw, 1.45rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-black), #2a1720);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.button-light {
  color: var(--rose-black);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.button-pink {
  color: var(--rose-black);
  background: linear-gradient(135deg, #fff, var(--pink-200));
  box-shadow: 0 16px 40px rgba(239, 182, 202, 0.25);
}

.section-block {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.booking-copy p,
.contact-panel p,
.black-paper-inner p {
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 236px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.25rem;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 234, 241, 0.72)),
    var(--white);
  border: 1px solid rgba(27, 23, 25, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.78), transparent 34%, rgba(255, 255, 255, 0.34));
}

.service-card > * {
  position: relative;
}

.service-card p {
  margin: 0.8rem 0 2rem;
  color: var(--muted);
}

.service-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 16, 19, 0.98), rgba(50, 28, 39, 0.96)),
    var(--rose-black);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-meta span {
  color: var(--white);
}

.sample-pill {
  align-self: flex-start;
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.25rem 0.55rem;
  color: var(--rose-black);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 16, 19, 0.08);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: auto;
}

.service-meta span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.service-meta strong {
  color: var(--pink-500);
  font-size: 1.8rem;
  line-height: 1;
}

.black-paper {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 5.4rem 1rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 16, 19, 0.98), rgba(40, 23, 32, 0.98)),
    var(--rose-black);
  clip-path: polygon(0 4%, 7% 0, 18% 5%, 29% 0, 43% 4%, 55% 0, 69% 5%, 84% 0, 100% 4%, 100% 96%, 92% 100%, 80% 95%, 68% 100%, 55% 96%, 43% 100%, 29% 95%, 15% 100%, 0 96%);
}

.black-paper-inner {
  display: grid;
  gap: 1.5rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  align-items: center;
}

.black-paper h2 {
  color: var(--white);
}

.black-paper .eyebrow {
  color: var(--pink-200);
}

.black-paper-inner p {
  color: rgba(255, 255, 255, 0.72);
}

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

.gallery-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--soft-gray);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-card::after {
  content: "Portfolio Demo";
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.22rem 0.5rem;
  color: var(--rose-black);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 360ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.4rem 0.65rem;
  color: var(--white);
  background: rgba(17, 16, 19, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.booking {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 5rem;
}

.preview-note {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.6rem 0.85rem;
  color: var(--rose-black);
  background: var(--pink-100);
  border: 1px solid rgba(220, 111, 150, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 1.5rem);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 234, 241, 0.7)),
    var(--white);
  border: 1px solid rgba(17, 16, 19, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.42rem;
}

.form-two-col {
  display: grid;
  gap: 1rem;
}

label {
  color: var(--rose-black);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 16, 19, 0.12);
  border-radius: 8px;
  font: inherit;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(220, 111, 150, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  margin-top: 0.25rem;
}

.demo-form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--pink-500);
  font-size: 0.86rem;
  font-weight: 800;
}

.policy-list {
  display: grid;
  gap: 0.75rem;
}

.policy-list div {
  position: relative;
  padding: 1rem 1rem 1rem 2.7rem;
  background: var(--white);
  border: 1px solid rgba(17, 16, 19, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 21, 26, 0.08);
  font-weight: 800;
}

.policy-list div::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.28rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--champagne));
  box-shadow: 0 0 0 5px rgba(248, 216, 226, 0.82);
}

.contact {
  padding-top: 1rem;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 5vw, 2.25rem);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 16, 19, 0.96), rgba(42, 23, 32, 0.96)),
    var(--rose-black);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel p,
.contact-panel .eyebrow {
  color: var(--white);
}

.contact-links {
  display: grid;
  gap: 0.75rem;
}

.contact-links a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--rose-black);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.floating-book {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose-black), #3d1f2d);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(17, 16, 19, 0.32);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer {
  padding: 2.2rem 1rem 5.6rem;
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.builder-credit {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.builder-credit a {
  color: var(--rose-black);
  text-decoration: underline;
  text-decoration-color: var(--pink-500);
  text-underline-offset: 0.22em;
}

.footer-admin-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: var(--pink-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.thank-you-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(17, 16, 19, 0.74), rgba(248, 216, 226, 0.36)),
    url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1800&q=88") center/cover;
}

.thank-you-shell {
  min-height: calc(100vh - 34px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.thank-you-card {
  width: min(100%, 680px);
  padding: clamp(1.25rem, 5vw, 2.5rem);
  color: var(--rose-black);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.thank-you-card h1 {
  color: var(--rose-black);
  font-size: clamp(3.25rem, 13vw, 7rem);
  text-shadow: none;
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.thank-you-credit {
  margin-top: 1.2rem;
}

.admin-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(248, 216, 226, 0.94), transparent 24rem),
    linear-gradient(180deg, var(--pink-50), var(--soft-gray));
}

.admin-header {
  width: min(100% - 2rem, var(--max-width));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem 0 0.5rem;
}

.admin-brand {
  color: var(--rose-black);
  text-shadow: none;
}

.admin-brand .brand-by {
  color: var(--pink-500);
}

.admin-header-actions {
  display: flex;
  gap: 0.65rem;
}

.admin-shell {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  padding: clamp(2.2rem, 7vw, 4.5rem) 0;
}

.admin-intro {
  max-width: 760px;
  margin-bottom: 2rem;
}

.admin-intro h1 {
  max-width: 820px;
  color: var(--rose-black);
  font-size: clamp(3rem, 10vw, 6.4rem);
  text-shadow: none;
}

.admin-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

.admin-form,
.admin-export {
  display: grid;
  gap: 1rem;
}

.admin-card,
.admin-export {
  padding: clamp(1rem, 4vw, 1.45rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 16, 19, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-card h2 {
  font-size: clamp(1.7rem, 6vw, 2.6rem);
}

.admin-card-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.admin-card-heading span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-grid {
  display: grid;
  gap: 1rem;
}

.admin-grid label,
.admin-card > label,
.admin-export label {
  display: grid;
  gap: 0.42rem;
}

.admin-service-list,
.admin-gallery-list {
  display: grid;
  gap: 1rem;
}

.admin-mini-card {
  margin: 0;
  padding: 1rem 0 0;
  border: 0;
  border-top: 1px solid rgba(17, 16, 19, 0.1);
}

.admin-mini-card legend {
  padding: 0 0.6rem 0 0;
  color: var(--pink-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-actions {
  z-index: 30;
  display: grid;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

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

.admin-export {
  margin-top: 1rem;
}

#settings-output {
  min-height: 210px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.82rem;
}

@media (min-width: 640px) {
  .main-nav {
    display: inline-flex;
  }

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

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

  .gallery-card.large,
  .gallery-card.wide {
    grid-column: span 2;
  }

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

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

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

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

  .floating-book {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }
}

@media (min-width: 900px) {
  .hero {
    padding-top: 8rem;
  }

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

  .service-card {
    grid-column: span 1;
  }

  .service-card.featured {
    transform: translateY(-0.75rem);
  }

  .black-paper-inner {
    grid-template-columns: 1.2fr 0.8fr auto;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: minmax(230px, 1fr);
  }

  .gallery-card.large {
    grid-column: span 1;
    grid-row: span 2;
  }

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

  .booking {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .policy-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

@media (max-width: 760px) {
  .admin-header {
    align-items: flex-start;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-header-actions .button {
    width: 100%;
  }

  .hero h1 {
    max-width: min(7.7ch, calc(100vw - 2rem));
    font-size: clamp(3.35rem, 15vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
  }

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

  .hero-tagline {
    max-width: min(340px, calc(100vw - 2rem));
  }

  .preview-detail {
    flex-basis: 100%;
  }
}

@media (max-width: 420px) {
  .preview-strip {
    padding-inline: 0.75rem;
    font-size: 0.72rem;
  }
}
