:root {
  --page: #f8f2f0;
  --paper: #fffaf8;
  --paper-soft: #fbf5f3;
  --rose: #c96f8c;
  --rose-strong: #bd5d80;
  --rose-pale: #edd2da;
  --plum: #583744;
  --plum-dark: #432733;
  --ink: #2b2528;
  --muted: #6f6469;
  --line: rgba(88, 55, 68, 0.13);
  --shadow: 0 18px 48px rgba(67, 39, 51, 0.09);

  --display: Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", Georgia, serif;

  --sans:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* ======================================================
   BASE
   ====================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background:
    radial-gradient(circle at 50% 0, #fff, transparent 34rem), #eee9e7;

  color: var(--ink);

  font-family: var(--sans);
  line-height: 1.6;

  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.svg-defs {
  width: 0;
  height: 0;

  position: absolute;

  overflow: hidden;
}

/* ======================================================
   PAGE
   ====================================================== */

.card-page {
  width: min(100%, 790px);

  margin: 0 auto;

  background: var(--paper);

  box-shadow: 0 0 80px rgba(67, 39, 51, 0.1);

  overflow: hidden;
}

/* ======================================================
   TOP BAR
   ====================================================== */

.topbar {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 16px;

  padding: 0 34px;

  position: sticky;
  top: 0;

  z-index: 20;

  background: rgba(255, 250, 248, 0.92);

  border-bottom: 1px solid var(--line);

  backdrop-filter: blur(16px);
}

.top-brand {
  font-family: var(--display);

  font-size: 18px;

  color: var(--plum);
}

.language-toggle {
  display: flex;

  gap: 3px;

  padding: 3px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: #fff;
}

.lang-button {
  border: 0;

  border-radius: 999px;

  padding: 7px 10px;

  background: transparent;

  color: var(--muted);

  cursor: pointer;

  font: 800 11px / 1 var(--sans);
}

.lang-button.is-active {
  background: var(--plum);

  color: white;
}

/* ======================================================
   HERO
   ====================================================== */

.hero {
  min-height: 600px;

  display: grid;

  grid-template-columns:
    58%
    42%;

  position: relative;

  overflow: hidden;

  isolation: isolate;

  background:
    radial-gradient(
      circle at 76% 42%,
      rgba(201, 111, 140, 0.08),
      transparent 30rem
    ),
    var(--paper);
}

/* ======================================================
   HERO COPY
   ====================================================== */

.hero-copy {
  position: relative;

  z-index: 5;

  padding: 76px 0 64px 48px;
}

.hero-kicker {
  margin: 0 0 12px;

  color: var(--rose-strong);

  font-size: 13px;

  font-weight: 850;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 0 0 22px;

  color: var(--plum);

  font-family: var(--display);

  font-size: clamp(68px, 11vw, 96px);

  font-weight: 500;

  line-height: 0.79;

  letter-spacing: -0.055em;
}

/* ======================================================
   HERO BADGE
   ====================================================== */

.hero-badge {
  width: fit-content;

  max-width: 350px;

  display: flex;
  align-items: center;

  gap: 11px;

  margin: 0 0 20px;

  padding: 12px 14px;

  border-radius: 10px;

  background: var(--rose-pale);

  color: var(--plum);

  font-size: 12px;

  font-weight: 850;

  letter-spacing: 0.02em;

  text-transform: uppercase;
}

.hero-badge svg {
  width: 22px;
  height: 22px;

  flex: 0 0 22px;

  fill: none;

  stroke: var(--rose-strong);

  stroke-width: 1.8;
}

.hero-services {
  margin: 0 0 23px;

  font-size: 13px;

  font-weight: 760;
}

/* ======================================================
   HERO CONTACT
   ====================================================== */

.hero-contact {
  display: grid;

  justify-items: start;

  gap: 9px;
}

.contact-pill {
  min-height: 40px;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 0 15px;

  border: 1px solid var(--rose);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.72);

  color: var(--rose-strong);

  font-size: 13px;

  font-weight: 720;
}

.contact-pill svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;
}

/* ======================================================
   HERO IMAGE
   ====================================================== */

.hero-photo-wrap {
  width: 52%;
  height: 100%;

  position: absolute;

  inset: 0 0 0 auto;

  z-index: 1;

  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.16) 8%,
    rgba(0, 0, 0, 0.72) 24%,
    #000 42%,
    #000 100%
  );

  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.16) 8%,
    rgba(0, 0, 0, 0.72) 24%,
    #000 42%,
    #000 100%
  );
}

.hero-photo {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: 48% 22%;

  filter: saturate(0.88) contrast(0.97) brightness(1.03);

  transform: scale(1.015);
}

.hero-photo-wrap::after {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    to bottom,
    transparent 68%,
    rgba(255, 250, 248, 0.18) 82%,
    var(--paper) 100%
  );
}

.hero-floral {
  width: 430px;

  position: absolute;

  top: -90px;
  left: 16px;

  z-index: 2;

  opacity: 0.32;

  pointer-events: none;
}

/* ======================================================
   ABOUT
   ====================================================== */

.about-section {
  padding: 38px 40px 48px;

  background: var(--paper);
}

.section-title {
  display: flex;

  align-items: center;

  gap: 10px;
}

.section-title svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: var(--rose-strong);

  stroke-width: 1.7;
}

.section-title h2,
.trajectory-section h2,
.services-section h2,
.trust-eyebrow,
.footer-title {
  margin: 0;

  color: var(--rose-strong);

  font-family: var(--display);

  font-size: 27px;

  font-weight: 500;

  letter-spacing: 0.01em;

  text-transform: uppercase;
}

.about-grid {
  display: grid;

  grid-template-columns:
    1fr
    1.02fr;

  gap: 28px;

  align-items: start;

  margin-top: 18px;
}

.about-copy p {
  margin-bottom: 16px;

  color: var(--ink);

  font-size: 16px;

  line-height: 1.8;
}

.about-copy p:nth-of-type(2) {
  color: var(--muted);
}

.mini-values {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 18px;
}

.mini-values span {
  padding: 8px 12px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: #fff;

  color: var(--plum);

  font-size: 12px;

  font-weight: 760;
}

/* ======================================================
   CAROUSEL
   ====================================================== */

.gallery-card {
  padding: 18px;

  border: 1px solid rgba(88, 55, 68, 0.08);

  border-radius: 24px;

  background: linear-gradient(180deg, #fff 0%, #fcf5f3 100%);

  box-shadow: var(--shadow);
}

.gallery-head {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 12px;

  margin-bottom: 14px;
}

.gallery-label {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--plum);

  font-size: 12px;

  font-weight: 780;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.gallery-label svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: var(--rose-strong);

  stroke-width: 1.6;
}

.gallery-controls {
  display: flex;

  gap: 8px;
}

.gallery-button {
  width: 34px;
  height: 34px;

  border: 1px solid var(--line);

  border-radius: 999px;

  background: #fff;

  color: var(--plum);

  cursor: pointer;

  font-size: 18px;

  line-height: 1;
}

.carousel {
  overflow: hidden;

  border-radius: 18px;

  background: #f4ece9;
}

.carousel-track {
  display: flex;

  transition: transform 0.36s ease;
}

.carousel-slide {
  min-width: 100%;

  position: relative;
}

.carousel-slide img {
  width: 100%;

  aspect-ratio: 1 / 1.05;

  object-fit: cover;

  object-position: center;
}

.carousel-slide p {
  margin: 0;

  position: absolute;

  left: 12px;
  bottom: 12px;

  padding: 8px 10px;

  border-radius: 999px;

  background: rgba(67, 39, 51, 0.74);

  color: #fff;

  font-size: 11px;

  font-weight: 700;

  backdrop-filter: blur(12px);
}

.carousel-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  padding-top: 14px;
}

.carousel-dot {
  width: 8px;
  height: 8px;

  border: 0;

  border-radius: 999px;

  background: rgba(88, 55, 68, 0.18);

  cursor: pointer;
}

.carousel-dot.is-active {
  width: 24px;

  background: var(--rose);
}

/* ======================================================
   TRAJECTORY
   ====================================================== */

.trajectory-section {
  padding: 38px 34px 36px;

  background: linear-gradient(180deg, #f7e9ec 0%, #f4e4e8 100%);

  border-top: 1px solid rgba(201, 111, 140, 0.1);

  border-bottom: 1px solid rgba(201, 111, 140, 0.1);
}

.trajectory-section > h2 {
  margin-bottom: 24px;
}

.trajectory-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
}

.trajectory-item {
  min-height: 118px;

  display: grid;

  justify-items: center;

  align-content: start;

  text-align: center;

  padding: 0 12px;

  border-right: 1px solid rgba(88, 55, 68, 0.18);
}

.trajectory-item:last-child {
  border-right: 0;
}

.trajectory-icon {
  width: 50px;
  height: 50px;

  display: grid;

  place-items: center;

  margin-bottom: 12px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.5);

  color: var(--rose-strong);

  box-shadow: inset 0 0 0 1px rgba(189, 93, 128, 0.14);
}

.trajectory-icon svg {
  width: 26px;
  height: 26px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.65;
}

.trajectory-item strong {
  color: var(--ink);

  font-size: 12px;

  line-height: 1.35;

  text-transform: uppercase;
}

.trajectory-item small {
  margin-top: 2px;

  color: var(--plum);

  font-size: 11px;

  font-weight: 760;
}

/* ======================================================
   SERVICES
   ====================================================== */

.services-section {
  padding: 38px 28px 42px;

  background:
    radial-gradient(
      circle at 70% 2%,
      rgba(201, 111, 140, 0.06),
      transparent 18rem
    ),
    var(--paper);
}

.ornament-heading {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  gap: 14px;

  margin-bottom: 24px;
}

.ornament-heading span {
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--rose-pale),
    var(--rose),
    var(--rose-pale),
    transparent
  );
}

.service-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;
}

.service-card {
  min-height: 132px;

  display: grid;

  grid-template-columns:
    58px
    1fr;

  gap: 14px;

  align-items: start;

  padding: 20px 18px;

  border: 1px solid rgba(88, 55, 68, 0.08);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.78);

  box-shadow: 0 8px 24px rgba(67, 39, 51, 0.05);
}

.service-icon {
  width: 50px;
  height: 50px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: var(--rose);

  color: white;
}

.service-icon svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.65;
}

.service-card h3 {
  margin: 0 0 6px;

  color: var(--plum);

  font-family: var(--display);

  font-size: 18px;

  font-weight: 600;

  line-height: 1.14;

  text-transform: uppercase;
}

.service-card p {
  margin: 0;

  color: var(--muted);

  font-size: 13.5px;

  line-height: 1.6;
}

/* ======================================================
   TRUST
   ====================================================== */

.trust-section {
  padding: 8px 28px 44px;

  background: var(--paper);
}

.trust-card {
  position: relative;

  overflow: hidden;

  padding: 30px 28px 28px;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(201, 111, 140, 0.13),
      transparent 15rem
    ),
    #fcf5f3;

  border: 1px solid rgba(88, 55, 68, 0.08);
}

.trust-card::after {
  content: "✦";

  position: absolute;

  right: 20px;
  top: 18px;

  color: var(--rose-pale);

  font-size: 58px;

  line-height: 1;
}

.trust-eyebrow {
  max-width: 420px;

  margin-bottom: 18px;

  font-size: 22px;
}

.trust-list {
  display: grid;

  gap: 12px;
}

.trust-list p {
  display: grid;

  grid-template-columns:
    24px
    1fr;

  align-items: start;

  gap: 10px;

  margin: 0;

  color: var(--ink);

  font-size: 14px;
}

.trust-list p > span:first-child {
  width: 22px;
  height: 22px;

  display: grid;

  place-items: center;

  margin-top: -1px;

  border-radius: 50%;

  background: var(--rose);

  color: #fff;
}

.trust-list svg {
  width: 13px;
  height: 13px;

  fill: none;

  stroke: currentColor;

  stroke-width: 2.5;
}

/* ======================================================
   CTA
   ====================================================== */

.cta-section {
  min-height: 300px;

  display: grid;

  place-items: center;

  position: relative;

  overflow: hidden;

  padding: 48px 40px;

  background: var(--plum);

  color: white;

  text-align: center;
}

.cta-copy {
  max-width: 570px;

  position: relative;

  z-index: 3;
}

.cta-copy > p:first-child {
  margin-bottom: 7px;

  color: var(--rose-pale);

  font-size: 10px;

  font-weight: 850;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.cta-copy h2 {
  margin: 0 0 10px;

  color: white;

  font-family: var(--display);

  font-size: clamp(34px, 7vw, 48px);

  font-weight: 500;

  line-height: 1;
}

.cta-copy > p:nth-of-type(2) {
  max-width: 480px;

  margin: 0 auto 22px;

  color: rgba(255, 255, 255, 0.76);

  font-size: 14px;
}

.cta-button {
  min-height: 49px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 0 26px;

  border-radius: 10px;

  background: var(--rose);

  color: white;

  font-size: 12px;

  font-weight: 850;

  letter-spacing: 0.03em;

  text-transform: uppercase;

  box-shadow: 0 12px 24px rgba(31, 18, 24, 0.2);

  transition:
    transform 0.16s ease,
    background 0.16s ease;
}

.cta-button:hover {
  transform: translateY(-2px);

  background: var(--rose-strong);
}

.cta-floral {
  width: 370px;

  position: absolute;

  opacity: 0.22;

  filter: brightness(1.7);
}

.cta-floral-left {
  left: -145px;

  bottom: -105px;
}

.cta-floral-right {
  right: -155px;

  top: -130px;

  transform: rotate(180deg);
}

/* ======================================================
   FOOTER
   ====================================================== */

.footer {
  padding: 28px 32px 20px;

  text-align: center;

  background: var(--paper);
}

.footer-title {
  margin-bottom: 15px;

  font-size: 20px;
}

.footer-contact {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px 18px;
}

.footer-contact a {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  color: var(--ink);

  font-size: 12px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: var(--plum);

  stroke-width: 1.7;
}

.footer-logo {
  width: 155px;

  margin: 20px auto 16px;
}

.footer-values {
  margin: 0 0 10px;

  color: var(--rose-strong);

  font-size: 10px;

  font-weight: 780;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.footer small {
  color: var(--muted);

  font-size: 10px;
}

/* ======================================================
   MOBILE
   ====================================================== */

@media (max-width: 680px) {
  .card-page {
    width: 100%;

    box-shadow: none;
  }

  /* ------------------------------
     HEADER
     ------------------------------ */

  .topbar {
    min-height: 58px;

    padding-inline: 20px;
  }

  /* ------------------------------
     HERO
     ------------------------------ */

  .hero {
    min-height: 590px;

    display: block;
  }

  .hero-copy {
    width: 69%;

    padding: 58px 0 58px 24px;
  }

  h1 {
    font-size: clamp(64px, 19vw, 88px);

    line-height: 0.82;
  }

  .hero-kicker {
    font-size: 12px;
  }

  .hero-badge {
    max-width: 280px;

    font-size: 10.5px;
  }

  .hero-services {
    font-size: 12px;
  }

  .contact-pill {
    max-width: 100%;

    font-size: 12px;
  }

  .hero-photo-wrap {
    width: 55%;
    height: 100%;

    right: 0;
    top: 0;

    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 8%,
      rgba(0, 0, 0, 0.58) 25%,
      #000 46%,
      #000 100%
    );

    mask-image: linear-gradient(
      to right,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 8%,
      rgba(0, 0, 0, 0.58) 25%,
      #000 46%,
      #000 100%
    );
  }

  .hero-photo {
    width: 100%;
    height: 100%;

    object-position: 51% 20%;

    transform: scale(1.02);
  }

  .hero-photo-wrap::after {
    background: linear-gradient(
      to bottom,
      transparent 70%,
      rgba(255, 250, 248, 0.22) 84%,
      var(--paper) 100%
    );
  }

  .hero-floral {
    width: 330px;

    left: -30px;

    top: -74px;
  }

  /* ------------------------------
     ABOUT
     ------------------------------ */

  .about-section {
    padding: 36px 22px 42px;
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }

  .about-copy p {
    font-size: 17px;

    line-height: 1.75;
  }

  .mini-values span {
    font-size: 12px;
  }

  /* ------------------------------
     CAROUSEL
     ------------------------------ */

  .gallery-card {
    padding: 14px;
  }

  .gallery-label {
    font-size: 11px;
  }

  .carousel-slide img {
    aspect-ratio: 1 / 1.02;
  }

  .carousel-slide p {
    font-size: 11px;
  }

  /* ------------------------------
     TRAJECTORY
     ------------------------------ */

  .trajectory-section {
    padding: 34px 18px 30px;
  }

  .trajectory-item {
    padding-inline: 8px;
  }

  .trajectory-icon {
    width: 44px;
    height: 44px;
  }

  .trajectory-icon svg {
    width: 24px;
    height: 24px;
  }

  .trajectory-item strong {
    font-size: 11px;
  }

  /* ------------------------------
     SERVICES
     ------------------------------ */

  .services-section {
    padding: 34px 18px 38px;
  }

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

  .service-card {
    min-height: auto;

    grid-template-columns:
      52px
      1fr;

    gap: 12px;

    padding: 18px 14px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .service-icon svg {
    width: 26px;
    height: 26px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
  }

  /* ------------------------------
     TRUST
     ------------------------------ */

  .trust-section {
    padding: 4px 18px 34px;
  }

  .trust-card {
    padding: 26px 22px 24px;
  }

  .trust-list p {
    font-size: 15px;
  }

  /* ------------------------------
     CTA
     ------------------------------ */

  .cta-section {
    padding-inline: 24px;
  }

  .cta-copy > p:nth-of-type(2) {
    font-size: 15px;
  }
}

/* ======================================================
   SMALL MOBILE
   ====================================================== */

@media (max-width: 470px) {
  .hero {
    min-height: 570px;
  }

  .hero-copy {
    width: 72%;

    padding: 52px 0 50px 22px;
  }

  h1 {
    font-size: clamp(58px, 19.5vw, 76px);
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-badge {
    max-width: 245px;

    padding: 9px 10px;

    font-size: 9.3px;
  }

  .hero-services {
    font-size: 11px;
  }

  .hero-photo-wrap {
    width: 53%;
  }

  .hero-photo {
    object-position: 50% 18%;
  }

  .contact-pill {
    min-height: 36px;

    padding-inline: 11px;

    font-size: 11px;
  }

  .about-copy p {
    font-size: 17px;
  }

  .trajectory-grid {
    grid-template-columns: repeat(2, 1fr);

    row-gap: 20px;
  }

  .trajectory-item:nth-child(2) {
    border-right: 0;
  }

  .trajectory-item:nth-child(3),
  .trajectory-item:nth-child(4) {
    padding-top: 18px;

    border-top: 1px solid rgba(88, 55, 68, 0.14);
  }

  .trajectory-item strong {
    font-size: 10px;
  }

  .trust-eyebrow {
    font-size: 20px;
  }
}

/* ======================================================
   REDUCED MOTION
   ====================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;
  }
}
