:root {
  --bg: #fff8f3;
  --bg-strong: #f5dfd7;
  --surface: rgba(255, 250, 246, 0.78);
  --surface-strong: #fff3eb;
  --text: #2f1f1f;
  --muted: #72575a;
  --accent: #cf5f7c;
  --accent-deep: #9e3656;
  --accent-soft: #f7d0da;
  --ink: #25161a;
  --line: rgba(77, 41, 50, 0.12);
  --shadow: 0 24px 70px rgba(108, 58, 66, 0.14);
}

* {
  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 top left, rgba(255, 211, 223, 0.9), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 238, 222, 0.85), transparent 28%),
    linear-gradient(180deg, #fffaf5 0%, #fff4ef 54%, #fdece7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
  pointer-events: none;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  box-shadow: 0 10px 30px rgba(158, 54, 86, 0.3);
  overflow: hidden;
}

.brand-emoji {
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(0.02rem);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

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

.brand-text small,
.site-nav a,
.hero-text,
.hero-points,
.feature-band p,
.section-heading p,
.service-card p,
.experience-copy p,
.experience-list p,
.quote-author,
.contact-section p {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.96rem;
}

.hero,
.experience-section,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero-copy,
.hero-card,
.quote-card,
.contact-card,
.feature-band article,
.service-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 3rem;
  border-radius: 2rem;
  background: rgba(255, 248, 243, 0.72);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.9rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.hero-text {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.contact-link:hover,
.contact-link:focus-visible,
.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 16px 30px rgba(158, 54, 86, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.button-full {
  width: 100%;
}

.button-disabled {
  background: rgba(132, 103, 108, 0.2);
  color: rgba(47, 31, 31, 0.62);
  border: 1px solid rgba(77, 41, 50, 0.12);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(99, 54, 65, 0.08);
}

.hero-card,
.quote-card,
.contact-card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 245, 240, 0.94), rgba(255, 232, 237, 0.82)),
    var(--surface);
}

.hero-card {
  min-height: 42rem;
  padding: 0;
  background: #f3d4cf;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 1;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(48, 21, 25, 0.18), rgba(48, 21, 25, 0.55));
  backdrop-filter: blur(12px);
}

.hero-card::after,
.quote-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(207, 95, 124, 0.24), transparent 68%);
}

.hero-card-top h2 {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.hero-card-overlay .hero-card-top h2,
.hero-card-overlay .hero-card-top p,
.hero-card-overlay .hero-stat-grid strong,
.hero-card-overlay .hero-stat-grid span {
  color: #fff7f4;
}

.hero-card-top p,
.service-tag,
.gallery-card span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stat-grid article {
  padding: 1rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(93, 52, 58, 0.08);
}

.hero-card-overlay .hero-stat-grid article {
  background: rgba(255, 247, 244, 0.15);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-stat-grid strong,
.service-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
}

.hero-stat-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-band,
.services-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.feature-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1rem 0 4rem;
}

.feature-band article,
.service-card {
  border-radius: 1.75rem;
  background: rgba(255, 252, 248, 0.7);
}

.feature-band article {
  padding: 1.5rem;
}

.feature-band span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
}

.services-section,
.gallery-section {
  margin-top: 4rem;
}

.section-heading {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.section-heading p:last-child,
.experience-copy > p:last-of-type {
  font-size: 1rem;
  line-height: 1.75;
}

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

.service-card {
  min-height: 18rem;
  padding: 1.5rem;
}

.service-card h3 {
  margin-top: 0.75rem;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0.9rem 0 2rem;
  line-height: 1.7;
}

.service-card-accent {
  background:
    linear-gradient(180deg, rgba(207, 95, 124, 0.12), rgba(255, 252, 248, 0.7)),
    rgba(255, 252, 248, 0.7);
}

.experience-section,
.contact-section {
  margin-top: 4rem;
}

.experience-copy,
.contact-copy {
  padding-right: 1rem;
}

.experience-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.experience-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.experience-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  line-height: 0.8;
  color: var(--accent);
}

blockquote {
  margin: 0.5rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.04;
  color: var(--ink);
}

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

.gallery-card {
  position: relative;
  min-height: 18rem;
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.gallery-card::before,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.gallery-card::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 35%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 26%);
}

.gallery-card::after {
  inset: auto 1rem 1rem 1rem;
  height: auto;
  padding: 1rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.74);
  backdrop-filter: blur(8px);
}

.gallery-card span {
  position: absolute;
  left: 2rem;
  bottom: 1.9rem;
  z-index: 1;
}

.gallery-card-blush {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.6), transparent 30%),
    linear-gradient(160deg, #f8d5de, #f1b4c5 40%, #c96788 100%);
}

.gallery-card-photo::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(31, 18, 22, 0.08) 56%, rgba(31, 18, 22, 0.45) 100%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), transparent 30%);
}

.gallery-card-rose {
  background:
    radial-gradient(circle at top center, rgba(255, 250, 247, 0.55), transparent 25%),
    linear-gradient(145deg, #ffc3d4, #ea6f8f 48%, #7f213b 100%);
}

.gallery-card-ink {
  background:
    radial-gradient(circle at top left, rgba(255, 234, 238, 0.25), transparent 20%),
    linear-gradient(145deg, #372229, #a3566c 55%, #f1c9d5 100%);
}

.gallery-card-gold {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.36), transparent 25%),
    linear-gradient(150deg, #f7ebce, #d8b46f 45%, #8f6030 100%);
}

.contact-section {
  align-items: center;
  padding: 4rem 0 1rem;
}

.contact-card {
  display: grid;
  gap: 0.9rem;
}

.contact-link {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 700;
}

@media (max-width: 1080px) {
  .services-grid,
  .gallery-grid,
  .feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .experience-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-card {
    padding: 2.25rem;
  }

  .hero-card {
    min-height: 34rem;
    padding: 0;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 100%);
    padding-top: 0.75rem;
  }

  .site-header,
  .site-nav,
  .hero-actions,
  .hero-points,
  .feature-band,
  .services-grid,
  .gallery-grid {
    gap: 0.85rem;
  }

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

  .hero-copy,
  .hero-card,
  .quote-card,
  .contact-card,
  .feature-band article,
  .service-card {
    border-radius: 1.5rem;
  }

  .hero-copy,
  .hero-card,
  .quote-card,
  .contact-card {
    padding: 1.5rem;
  }

  .hero-copy {
    padding: 1.5rem 1.25rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin: 1.5rem 0;
  }

  .button {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.8rem 1.1rem;
    font-size: 0.98rem;
  }

  .hero-points li {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 1.25rem;
  }

  .hero-card {
    min-height: auto;
    padding: 0;
  }

  .hero-card-overlay {
    position: static;
    inset: auto;
    padding: 1rem;
    border-radius: 0;
    border: 0;
    background: linear-gradient(180deg, rgba(76, 39, 45, 0.92), rgba(48, 21, 25, 0.96));
    backdrop-filter: none;
  }

  .hero-image {
    height: 17rem;
    object-position: center 35%;
  }

  .hero-card-top h2 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }

  .hero-stat-grid {
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .hero-stat-grid article {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .hero-stat-grid strong {
    font-size: 1.1rem;
  }

  .hero-stat-grid span {
    font-size: 0.9rem;
  }

  .feature-band,
  .services-grid,
  .gallery-grid,
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2,
  blockquote {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .gallery-card {
    min-height: 14rem;
  }
}
