:root {
  --ivory: #f7f3eb;
  --ivory-deep: #ebe4d6;
  --marble: #faf8f4;
  --navy: #1a2744;
  --navy-mid: #243556;
  --navy-soft: #3a4d73;
  --gold: #c9a84c;
  --gold-bright: #e0c56a;
  --gold-vein: #a8883a;
  --ink: #141c2e;
  --muted: #5a6478;
  --foam: rgba(250, 248, 244, 0.88);
  --line: rgba(26, 39, 68, 0.12);
  --star: rgba(255, 255, 255, 0.9);
  --shadow: 0 22px 60px rgba(26, 39, 68, 0.14);
  --radius: 0.35rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shell: min(1100px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--ivory);
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, var(--star), transparent),
    radial-gradient(1px 1px at 78% 12%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(1.2px 1.2px at 55% 40%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 88% 62%, var(--star), transparent),
    radial-gradient(1.4px 1.4px at 30% 72%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(900px 500px at 8% -5%, rgba(201, 168, 76, 0.18), transparent 55%),
    radial-gradient(700px 420px at 95% 5%, rgba(36, 53, 86, 0.12), transparent 50%),
    linear-gradient(165deg, var(--marble) 0%, var(--ivory) 45%, var(--ivory-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--navy-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-vein);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 235, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.35rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.2rem;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.75), transparent 42%),
    linear-gradient(135deg, var(--ivory) 0%, var(--gold) 48%, var(--navy) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 6px 16px rgba(26, 39, 68, 0.2);
  animation: starPulse 7s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.35rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-soft);
}

.site-nav a:hover {
  color: var(--navy);
}

.nav-cta {
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--ivory) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--foam);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 243, 235, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(224, 197, 106, 0.45) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 55%, #2a3f68 100%);
  color: var(--ivory);
  box-shadow: 0 10px 28px rgba(26, 39, 68, 0.28), inset 0 1px 0 rgba(224, 197, 106, 0.25);
}

.btn-ghost {
  background: rgba(250, 248, 244, 0.7);
  color: var(--navy);
  border-color: rgba(201, 168, 76, 0.45);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Monumental full-bleed hero — brand first, single CTA */
.hero-marble {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}

.hero-marble__media {
  position: absolute;
  inset: 0;
}

.hero-marble__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.72);
}

.hero-marble__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 168, 76, 0.22), transparent 45%),
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 65% 45%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.2px 1.2px at 40% 70%, rgba(255, 255, 255, 0.55), transparent),
    linear-gradient(180deg, rgba(26, 39, 68, 0.35) 0%, rgba(20, 28, 46, 0.78) 55%, rgba(14, 20, 34, 0.92) 100%);
}

.hero-marble__content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  max-width: 38rem;
  animation: riseIn 1s ease both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--ivory);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero-inscription {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.35;
  color: rgba(247, 243, 235, 0.92);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
}

.hero-place {
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(224, 197, 106, 0.9);
}

.section {
  padding: 4.25rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.marble-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), rgba(247, 243, 235, 0.9)),
    var(--marble);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.marble-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.service-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}

.service-feature img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 800px) {
  .service-feature {
    grid-template-columns: 1fr;
  }
}

.meta {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-vein);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--navy-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-vein));
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.offer-item {
  padding: 0;
  overflow: hidden;
}

.offer-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.offer-item .offer-body {
  padding: 1.15rem 1.25rem 1.4rem;
}

.offer-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
  color: var(--navy);
}

.offer-item p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.offer-meta {
  color: var(--gold-vein) !important;
  font-weight: 600;
  font-size: 0.92rem !important;
}

.quote-band {
  padding: 2.5rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.15), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--ivory);
  border-radius: calc(var(--radius) + 0.2rem);
  position: relative;
  overflow: hidden;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    40px 20px 0 0 rgba(255, 255, 255, 0.7),
    -30px 40px 0 0 rgba(255, 255, 255, 0.5),
    80px 50px 0 0 rgba(255, 255, 255, 0.4);
  opacity: 0.8;
}

.quote-band::before { top: 18%; left: 12%; }
.quote-band::after { bottom: 22%; right: 15%; }

.quote-band blockquote {
  margin: 0 auto 1rem;
  max-width: 40rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.4;
  font-weight: 500;
}

.quote-band cite {
  font-style: normal;
  font-size: 0.92rem;
  color: rgba(224, 197, 106, 0.95);
}

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

@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.75rem;
  color: var(--navy);
  line-height: 1.1;
  font-weight: 600;
}

.page-hero p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.bleed-hero {
  position: relative;
  min-height: 36vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--ivory);
}

.bleed-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.85);
}

.bleed-copy {
  position: relative;
  z-index: 1;
  padding: 3rem 0 2.25rem;
}

.bleed-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.1;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.7rem;
  margin: 2rem 0 0.65rem;
}

.prose p,
.prose li {
  color: var(--navy-soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

@media (max-width: 760px) {
  .case-grid { grid-template-columns: 1fr; }
}

.case-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card .case-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0.35rem 0 0.55rem;
  color: var(--navy);
  line-height: 1.2;
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: center;
  overflow: hidden;
}

.blog-row img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

@media (max-width: 640px) {
  .blog-row {
    grid-template-columns: 1fr;
  }
  .blog-row img { height: 180px; }
}

.blog-row h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0.25rem 0 0.45rem;
  color: var(--navy);
}

.blog-row h3 a {
  text-decoration: none;
  color: inherit;
}

.form-panel label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--ink);
}

.form-panel textarea {
  min-height: 140px;
  resize: vertical;
}

.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  outline: 2px solid rgba(201, 168, 76, 0.55);
  outline-offset: 1px;
}

.field-error {
  display: block;
  min-height: 1.1em;
  margin-top: 0.25rem;
  color: #8b2e2e;
  font-size: 0.85rem;
  font-weight: 500;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.form-status[data-state="success"] {
  background: rgba(46, 110, 72, 0.12);
  color: #1f5a38;
}

.form-status[data-state="error"] {
  background: rgba(139, 46, 46, 0.12);
  color: #8b2e2e;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(26, 39, 68, 0.06));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.75rem;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  color: var(--navy);
}

.footer-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-vein);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.footer-text {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  text-decoration: none;
  color: var(--navy-soft);
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(180deg, var(--navy-mid), var(--navy));
  color: var(--ivory);
  padding: 1rem 0 1.15rem;
  box-shadow: 0 -12px 40px rgba(14, 20, 34, 0.35);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.95rem;
}

.cookie-inner a {
  color: var(--gold-bright);
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
}

.cookie-error {
  width: var(--shell);
  margin: 0.5rem auto 0;
  color: #ffb4b4;
  font-size: 0.88rem;
}

.not-found {
  padding: 6rem 0;
  text-align: center;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.not-found p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}
