:root {
  --bg: #f9eef3;
  --bg-soft: rgba(255, 247, 250, 0.82);
  --surface: rgba(255, 250, 252, 0.78);
  --surface-strong: #fffafd;
  --surface-dark: #6e5460;
  --text: #2f2228;
  --text-soft: #74616a;
  --line: rgba(151, 117, 129, 0.18);
  --accent: #d0aa55;
  --accent-strong: #b4872e;
  --accent-soft: #f3dce5;
  --gold: #e0bf7d;
  --rose: #ebceda;
  --rose-strong: #cfa3b5;
  --shadow: 0 24px 60px rgba(88, 61, 73, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 248, 231, 0.24) 0%, rgba(255, 248, 231, 0) 30%),
    linear-gradient(135deg, var(--surface-dark) 0%, #9d7a88 68%, var(--accent) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: 10%;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 231, 0.2) 0%, rgba(255, 248, 231, 0) 70%);
}

body::after {
  bottom: -90px;
  left: -70px;
  width: 320px;
  height: 320px;
  border-radius: 42% 58% 63% 37% / 43% 43% 57% 57%;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.24) 0%, rgba(255, 248, 231, 0) 80%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 22px 0 36px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 247, 250, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(90, 63, 74, 0.08);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, #faeaf1 0%, #e8cbd8 44%, #d0aa55 100%);
  color: #fffdf9;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.eyebrow,
.section-tag,
.card-label,
.panel-kicker {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 700;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(208, 170, 85, 0.24);
  background: linear-gradient(180deg, rgba(255, 252, 253, 0.92) 0%, rgba(247, 238, 243, 0.82) 100%);
  color: var(--text);
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(89, 60, 72, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(180, 135, 46, 0.34);
  box-shadow: 0 20px 32px rgba(89, 60, 72, 0.12);
  outline: none;
}

.social-pill-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.social-pill-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.social-pill-label,
.social-pill-handle {
  display: inline-flex;
  align-items: center;
}

.social-pill-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.social-pill-handle {
  padding-left: 10px;
  border-left: 1px solid rgba(208, 170, 85, 0.22);
  font-weight: 700;
}

.nav-link,
.footer-link {
  position: relative;
  overflow: hidden;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  background: rgba(208, 170, 85, 0.14);
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.nav-link.active {
  background: linear-gradient(135deg, var(--surface-dark) 0%, #9d7a88 68%, var(--accent) 100%);
  color: #fffaf4;
}

.nav-link.active::before {
  content: "";
  position: absolute;
  inset: -70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 231, 0.86) 0%, rgba(255, 248, 231, 0.22) 38%, rgba(255, 248, 231, 0) 68%);
  transform: scale(0.2);
  opacity: 0;
  pointer-events: none;
  animation: nav-flash 540ms ease-out both;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.page-shell > * {
  animation: lift-in 520ms ease both;
}

.hero-section,
.split-section,
.prestation-banner,
.addons-card,
.contact-layout,
.guestbook-layout,
.page-hero,
.gallery-block,
.site-footer {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 251, 253, 0.9) 0%, rgba(248, 239, 244, 0.8) 100%);
  box-shadow: var(--shadow);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 961px) {
  .hero-section {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.3fr);
  }

  .hero-copy {
    order: 2;
  }

  .portrait-panel {
    order: 1;
  }
}

.page-hero {
  text-align: center;
}

.page-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy h1,
.page-hero h1,
.split-section h2,
.prestation-banner h2,
.addons-card h2,
.contact-sidebar h2,
.guestbook-form h2,
.pricing-card h2,
.section-heading h2,
.hero-panel h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 700;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6.7vw, 4.8rem);
  max-width: 11ch;
}

.page-hero h1,
.split-section h2,
.prestation-banner h2,
.addons-card h2,
.guestbook-form h2,
.section-heading h2,
.hero-panel h2,
.contact-sidebar h2,
.pricing-card h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.contact-sidebar .info-card h2 {
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lede,
.body-copy,
.service-card p,
.info-card p,
.media-content p,
.option-card p,
.pricing-card p,
.empty-state p,
.guest-message,
.footer-copy,
.section-heading p {
  color: var(--text-soft);
  line-height: 1.7;
}

.lede {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.02rem;
}

.lede.narrow {
  max-width: 58ch;
}

.hero-actions,
.footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-button:disabled,
.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
  transform: none;
  box-shadow: none;
}

.primary-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #d8ba73 0%, var(--accent-strong) 100%);
  color: #fff8f1;
  box-shadow: 0 18px 32px rgba(180, 135, 46, 0.22);
}

.primary-button::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -45%;
  width: 40%;
  height: 320%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 252, 240, 0.78) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-220%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.primary-button:hover::before,
.primary-button:focus-visible::before {
  animation: button-flash 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ghost-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255, 248, 251, 0.72);
  border-color: rgba(208, 170, 85, 0.26);
  color: var(--text);
}

.ghost-button::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -52%;
  width: 36%;
  height: 320%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 247, 229, 0.64) 48%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-230%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
}

.ghost-button:hover::before,
.ghost-button:focus-visible::before {
  animation: button-flash-soft 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ghost-button.compact {
  width: 100%;
}

.pricing-card .ghost-button.compact {
  margin-top: auto;
}

.pricing-card .ghost-button.compact,
.contact-submit-button {
  border-color: rgba(168, 118, 28, 0.34);
  background: linear-gradient(135deg, rgba(245, 234, 207, 0.94) 0%, rgba(230, 207, 151, 0.9) 100%);
  color: #5f4421;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(183, 133, 45, 0.16);
}

.pricing-card .ghost-button.compact::before,
.contact-submit-button::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 249, 232, 0.6) 48%, rgba(255, 255, 255, 0) 100%);
}

.pricing-card .ghost-button.compact:hover,
.pricing-card .ghost-button.compact:focus-visible,
.contact-submit-button:hover,
.contact-submit-button:focus-visible {
  border-color: rgba(156, 106, 18, 0.46);
  box-shadow: 0 14px 24px rgba(183, 133, 45, 0.22);
  transform: translateY(-1px);
}

.primary-button:hover,
.primary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 28px;
  border-radius: calc(var(--radius-lg) - 4px);
  color: #fffaf5;
  background:
    linear-gradient(145deg, rgba(102, 74, 87, 0.96) 0%, rgba(162, 116, 135, 0.9) 58%, rgba(208, 170, 85, 0.84) 100%),
    radial-gradient(circle at top left, rgba(255, 244, 249, 0.16) 0%, rgba(255, 244, 249, 0) 45%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  border-radius: 46% 54% 64% 36% / 49% 33% 67% 51%;
  background: rgba(255, 250, 252, 0.08);
}

.panel-kicker {
  color: rgba(255, 243, 221, 0.82);
}

.portrait-panel {
  min-height: clamp(380px, 46vw, 540px);
  justify-content: flex-end;
  align-items: flex-start;
  isolation: isolate;
  padding: 30px;
}

.portrait-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 12, 15, 0.06) 0%, rgba(18, 12, 15, 0.18) 36%, rgba(18, 12, 15, 0.84) 100%),
    linear-gradient(120deg, rgba(18, 12, 15, 0.38) 0%, rgba(18, 12, 15, 0.08) 44%, rgba(212, 177, 102, 0.2) 100%);
}

.hero-panel-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: filter 240ms ease;
}

.portrait-panel:hover .hero-panel-image,
.portrait-panel:focus-within .hero-panel-image {
  filter: brightness(1.1) saturate(1.08);
  animation: portrait-flash-soft 620ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.portrait-plaque {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(231, 207, 155, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(33, 23, 28, 0.36) 0%, rgba(33, 23, 28, 0.62) 100%);
  box-shadow: 0 18px 40px rgba(16, 9, 12, 0.24);
  backdrop-filter: blur(12px);
}

.portrait-name,
.portrait-role {
  margin: 0;
}

.portrait-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.portrait-role {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(243, 226, 187, 0.8);
}

.panel-list,
.bio-list,
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.panel-list li,
.bio-list li,
.price-list li,
.compact-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.panel-list li::before,
.bio-list li::before,
.price-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.stats-grid,
.service-grid,
.pricing-grid,
.guestbook-summary {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid,
.pricing-grid,
.guestbook-summary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.service-card,
.pricing-card,
.summary-card,
.option-card,
.info-card,
.guestbook-card,
.empty-state,
.guestbook-form,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 253, 0.9);
  box-shadow: 0 18px 34px rgba(87, 59, 70, 0.08);
}

.stat-card,
.summary-card {
  padding: 24px;
}

.service-card,
.pricing-card,
.option-card,
.guestbook-card,
.empty-state,
.info-card,
.guestbook-form,
.contact-form {
  padding: 26px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.stat-value,
.summary-value,
.price-value,
.option-price {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
}

.stat-value,
.summary-value {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.stat-label,
.summary-label {
  margin: 12px 0 0;
  color: var(--text-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.prestation-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  border-color: rgba(208, 170, 85, 0.26);
  background:
    radial-gradient(circle at 84% 18%, rgba(224, 191, 125, 0.18) 0%, rgba(224, 191, 125, 0) 48%),
    linear-gradient(160deg, rgba(255, 251, 253, 0.93) 0%, rgba(246, 233, 240, 0.86) 100%);
}

.prestation-copy h2 {
  margin-top: 8px;
  font-size: 2rem;
}

.prestation-list {
  padding: 22px;
  border: 1px solid rgba(180, 135, 46, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 252, 0.8);
}

.bio-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: 26px;
  border: 1px solid rgba(180, 135, 46, 0.28);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 252, 0.8);
}

.service-card,
.pricing-card,
.option-card,
.media-card,
.guestbook-card,
.empty-state,
.info-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.pricing-card:hover,
.option-card:hover,
.media-card:hover,
.guestbook-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(208, 170, 85, 0.34);
  box-shadow: 0 24px 42px rgba(89, 60, 72, 0.12);
}

.addons-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
}

.gallery-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.gallery-grid,
.addons-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.videos-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 252, 0.9);
  box-shadow: 0 24px 38px rgba(88, 61, 73, 0.11);
}

.media-visual {
  position: relative;
  min-height: 260px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}

.video-visual {
  min-height: 220px;
}

.media-chip,
.play-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 244, 249, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fffaf5;
  backdrop-filter: blur(6px);
}

.duration-chip {
  font-weight: 700;
}

.media-overlay {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 14px;
  color: #fffdf7;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.media-content {
  padding: 22px;
}

.media-content h3,
.service-card h3,
.option-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.95;
}

.media-content p,
.service-card p,
.option-card p,
.price-note {
  margin: 14px 0 0;
}

.text-link {
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  font-weight: 700;
}

.price-value {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.price-note {
  min-height: 3.6em;
}

.contact-layout,
.guestbook-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.quote-request-shell .contact-layout {
  grid-template-columns: minmax(0, 1fr);
}

.quote-request-shell .contact-sidebar,
.quote-request-shell .contact-form {
  min-width: 0;
}

.quote-request-shell .contact-sidebar h2 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.guestbook-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.guestbook-layout-solo {
  grid-template-columns: minmax(0, 1fr);
}

.guestbook-feed-featured {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.guestbook-feed-featured .guestbook-card {
  padding: 30px;
}

.guestbook-feed-featured .guest-message {
  position: relative;
  margin-top: 22px;
  padding-left: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

.guestbook-feed-featured .guest-message::before {
  content: "\201C";
  position: absolute;
  top: -0.3em;
  left: -0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-style: normal;
  color: var(--accent);
  opacity: 0.6;
}

.contact-sidebar,
.guestbook-feed {
  display: grid;
  gap: 18px;
}

.contact-form,
.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-grid label span {
  font-size: 0.9rem;
  font-weight: 700;
}

.full-width {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(151, 117, 129, 0.22);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255, 252, 253, 0.92);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(208, 170, 85, 0.72);
  box-shadow: 0 0 0 4px rgba(208, 170, 85, 0.14);
  background: #fffdfd;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-notice {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
}

.form-notice.success {
  position: relative;
  overflow: hidden;
  border-color: rgba(100, 153, 96, 0.24);
  background: rgba(230, 246, 228, 0.78);
  color: #2a5f30;
  animation: notice-pop 360ms ease-out both;
}

.form-notice.success::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(120, 176, 109, 0.58);
  box-shadow: 0 0 0 0 rgba(120, 176, 109, 0.34);
  opacity: 0;
  pointer-events: none;
  animation: notice-halo 720ms ease-out both;
}

.form-notice.error {
  border-color: rgba(178, 81, 81, 0.34);
  background: rgba(255, 236, 236, 0.88);
  color: #7e2020;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-actions .ghost-button,
.form-actions .primary-button {
  flex: 1 1 220px;
}

.admin-inline-note {
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.admin-login-shell {
  display: flex;
  justify-content: center;
}

.admin-login-form {
  width: min(100%, 560px);
}

.admin-layout {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.admin-selected-content {
  display: grid;
  gap: 12px;
}

.admin-selected-content label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-selected-grid {
  margin-top: 4px;
}

.admin-feed {
  align-content: start;
}

.admin-entry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-entry-card.is-selected {
  border-color: rgba(208, 170, 85, 0.52);
  box-shadow: 0 22px 40px rgba(106, 74, 38, 0.18);
}

.admin-entry-card .admin-entry-actions {
  margin-top: 4px;
}

.admin-edit-grid {
  margin-top: 4px;
}

.status-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 38px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.status-badge.approved {
  background: rgba(225, 246, 226, 0.82);
  border-color: rgba(111, 172, 116, 0.38);
  color: #2d6a35;
}

.status-badge.pending {
  background: rgba(255, 239, 219, 0.9);
  border-color: rgba(184, 133, 45, 0.42);
  color: #7a5217;
}

.status-badge.rejected {
  background: rgba(255, 233, 233, 0.92);
  border-color: rgba(178, 81, 81, 0.42);
  color: #7e2020;
}

.status-badge.nouveau {
  background: rgba(255, 239, 219, 0.9);
  border-color: rgba(184, 133, 45, 0.42);
  color: #7a5217;
}

.status-badge.traite {
  background: rgba(225, 246, 226, 0.82);
  border-color: rgba(111, 172, 116, 0.38);
  color: #2d6a35;
}

.status-badge.archive {
  background: rgba(238, 232, 236, 0.85);
  border-color: rgba(151, 117, 129, 0.32);
  color: var(--text-soft);
}

.status-badge.owner {
  background: rgba(224, 191, 125, 0.32);
  border-color: rgba(180, 135, 46, 0.48);
  color: #6a4a1f;
}

.status-badge.admin {
  background: rgba(235, 206, 218, 0.55);
  border-color: rgba(151, 117, 129, 0.38);
  color: #6e5460;
}

.admin-footer {
  display: flex;
  justify-content: center;
  padding: 20px 0 6px;
}

.admin-footer-link {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 180ms ease, color 180ms ease;
}

.admin-footer-link:hover,
.admin-footer-link:focus-visible {
  opacity: 1;
  color: var(--accent-strong);
}

.visually-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  left: -9999px;
}

.admin-entry-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-entry-actions .primary-button,
.admin-entry-actions .ghost-button {
  min-height: 44px;
  padding: 10px 18px;
}

.danger-button {
  border-color: rgba(178, 81, 81, 0.46);
  color: #7e2020;
  background: rgba(255, 238, 238, 0.9);
}

.danger-button:hover,
.danger-button:focus-visible {
  border-color: rgba(160, 54, 54, 0.58);
  box-shadow: 0 12px 22px rgba(142, 40, 40, 0.16);
}

.guestbook-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.guest-name,
.guest-context,
.guest-message {
  overflow-wrap: anywhere;
}

.guest-name {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.guest-context,
.guest-date {
  margin: 6px 0 0;
  color: var(--text-soft);
}

.guest-message {
  margin: 18px 0 0;
}

.rating-badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(239, 215, 225, 0.78) 0%, rgba(224, 191, 125, 0.42) 100%);
  color: var(--accent-strong);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}

.footer-actions {
  justify-content: flex-end;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-flash {
  0% {
    transform: translateX(-220%) rotate(18deg);
    opacity: 0;
  }

  20% {
    opacity: 0.88;
  }

  100% {
    transform: translateX(420%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes button-flash-soft {
  0% {
    transform: translateX(-230%) rotate(18deg);
    opacity: 0;
  }

  24% {
    opacity: 0.66;
  }

  100% {
    transform: translateX(420%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes nav-flash {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  38% {
    opacity: 0.72;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes portrait-flash-soft {
  0% {
    filter: brightness(1) saturate(1);
  }

  34% {
    filter: brightness(1.1) saturate(1.08);
  }

  100% {
    filter: brightness(1) saturate(1);
  }
}

@keyframes notice-pop {
  from {
    transform: translateY(4px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes notice-halo {
  0% {
    box-shadow: 0 0 0 0 rgba(120, 176, 109, 0.34);
    opacity: 0;
  }

  24% {
    opacity: 0.9;
  }

  100% {
    box-shadow: 0 0 0 12px rgba(120, 176, 109, 0);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .site-header,
  .hero-section,
  .split-section,
  .prestation-banner,
  .addons-card,
  .contact-layout,
  .guestbook-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    border-radius: 28px;
    align-items: stretch;
  }

  .site-nav,
  .footer-actions,
  .header-tools {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .stats-grid,
  .service-grid,
  .pricing-grid,
  .guestbook-summary,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .portrait-panel {
    min-height: 460px;
  }

  .full-width {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--max-width));
    padding-top: 10px;
  }

  .site-header {
    top: 8px;
    padding: 14px;
  }

  .header-tools {
    align-items: stretch;
  }

  .social-pill {
    width: 100%;
    justify-content: space-between;
  }

  .brand-name {
    font-size: 1.72rem;
  }

  .hero-section,
  .split-section,
  .prestation-banner,
  .addons-card,
  .page-hero,
  .gallery-block,
  .contact-layout,
  .guestbook-layout,
  .site-footer {
    padding: 22px;
    border-radius: 26px;
  }

  .media-visual {
    min-height: 220px;
  }

  .portrait-panel {
    min-height: 420px;
    padding: 20px;
  }

  .portrait-plaque {
    padding: 14px 16px;
  }

  .service-card,
  .pricing-card,
  .option-card,
  .guestbook-card,
  .empty-state,
  .info-card,
  .guestbook-form,
  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}