:root {
  --pink-700: #a94170;
  --pink-600: #e99abb;
  --pink-500: #f0a9c7;
  --pink-300: #f3bfd5;
  --pink-100: #fbe3ed;
  --pink-050: #fff7fa;
  --ink: #1b1417;
  --black: #080708;
  --muted: #735e67;
  --white: #fff;
  --line: rgba(79, 31, 50, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(109, 24, 61, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-padding { padding-block: 120px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--pink-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 0.98; letter-spacing: -0.045em; }
h1 { max-width: 690px; margin-bottom: 28px; font-size: clamp(3.6rem, 6.7vw, 6.7rem); }
h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
h1 em, h2 em { color: var(--pink-600); font-weight: 400; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  border-bottom: 1px solid rgba(233, 154, 187, 0.24);
  background: #000;
}
.brand { display: inline-flex; align-items: center; width: max-content; color: var(--ink); text-decoration: none; }
.brand-logo { width: 190px; height: 76px; object-fit: contain; background: #000; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; color: white; border-radius: 50%; background: var(--pink-600); font-family: var(--serif); font-size: 1rem; }
.brand-name { font-family: var(--serif); font-size: 1.2rem; }
.brand-name strong { color: var(--pink-600); font-weight: 400; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a, .footer-links a { position: relative; text-decoration: none; font-size: 0.9rem; font-weight: 650; }
.main-nav a:hover { color: var(--pink-600); }
.main-nav a::after, .footer-links a::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.main-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header > .button { justify-self: end; }
.menu-button { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 27px;
  color: var(--white);
  border: 1px solid var(--pink-600);
  border-radius: 999px;
  background: var(--pink-600);
  box-shadow: 0 10px 28px rgba(197, 35, 102, 0.2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--pink-700); box-shadow: 0 15px 34px rgba(157, 23, 77, 0.25); }
.button-small { min-height: 44px; padding-inline: 20px; }
.button-instagram { color: var(--pink-600); border-color: var(--black); background: var(--black); box-shadow: 0 10px 28px rgba(8, 7, 8, .18); }
.button-instagram:hover { color: white; border-color: var(--pink-700); background: var(--pink-700); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-underline-offset: 5px; font-weight: 750; }
.text-link span { color: var(--pink-600); font-size: 1.25rem; }

.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 52px; min-height: calc(100svh - 96px); padding-block: 72px; }
.hero-description { max-width: 580px; margin-bottom: 36px; color: var(--muted); font-size: 1.16rem; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-highlights { display: flex; gap: 34px; margin: 56px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); list-style: none; }
.hero-highlights li { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.85rem; font-weight: 650; }
.hero-highlights span { color: var(--pink-600); font-family: var(--serif); font-size: 1.15rem; }
.hero-visual { position: relative; }
.hero-image-wrap { position: relative; overflow: hidden; border-radius: 28px; background: var(--pink-100); box-shadow: var(--shadow); }

.hero-image-wrap img { width: 100%; height: auto; display: block; }
.hero-seal { position: absolute; right: -28px; bottom: 90px; display: flex; align-items: center; justify-content: center; gap: 5px; width: 138px; height: 138px; color: var(--white); border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: var(--pink-600); box-shadow: 0 16px 34px rgba(119, 17, 59, 0.3); transform: rotate(-10deg); }
.hero-seal span { writing-mode: vertical-rl; font-size: 0.58rem; font-weight: 800; letter-spacing: .15em; }
.hero-seal strong { font-size: 1.5rem; }

.intro-strip { display: flex; gap: 38px; align-items: center; justify-content: center; overflow: hidden; padding: 22px 24px; color: var(--pink-600); background: var(--black); white-space: nowrap; }
.intro-strip span { font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.intro-strip i { color: var(--pink-300); font-style: normal; }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.section-heading > p { margin: 0 0 8px; color: var(--muted); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 18px; min-height: 124px; padding: 22px 28px; border-bottom: 1px solid var(--line); transition: color .25s ease, background .25s ease, padding .25s ease; }
.service-item { width: 100%; color: var(--ink); border-top: 0; border-left: 0; background: white; font: inherit; text-align: left; cursor: pointer; }
.service-item:nth-child(odd) { border-right: 1px solid var(--line); }
.service-item:hover { padding-left: 36px; color: white; background: var(--black); }
.service-item:focus-visible { position: relative; z-index: 1; outline: 3px solid var(--pink-300); outline-offset: -3px; }
.service-number { color: #b0185a; font-family: var(--serif); font-size: .9rem; }
.service-copy { display: flex; flex-direction: column; gap: 5px; }
.service-name { color: #b0185a; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 400; line-height: 1.15; }
.service-description { color: var(--muted); font-size: .9rem; line-height: 1.4; }
.service-item:hover .service-number, .service-item:hover .service-name { color: var(--pink-100); }
.service-item:hover .service-description { color: rgba(255,255,255,.78); }
.service-item i { color: #b0185a; font-style: normal; font-size: 1.2rem; }
.service-item:hover i { color: white; }

.about-card { position: relative; display: grid; grid-template-columns: .75fr 1.45fr .8fr; gap: 58px; align-items: center; overflow: hidden; min-height: 500px; padding: 70px; border-radius: 36px; background: var(--pink-050); }
.about-card::before { content: ""; position: absolute; top: -180px; right: -160px; width: 440px; height: 440px; border: 1px solid var(--pink-300); border-radius: 50%; }
.about-monogram { color: var(--pink-600); font-family: var(--serif); font-size: 15rem; font-style: italic; line-height: 1; opacity: .16; }
.about-copy { position: relative; z-index: 1; }
.about-copy h2 { margin-bottom: 28px; font-size: clamp(2.6rem, 4vw, 4.5rem); }
.about-copy > p:not(.eyebrow) { max-width: 580px; color: var(--muted); }
.about-tags { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.about-tags span { padding: 13px 20px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); text-align: center; font-size: .82rem; font-weight: 750; }

.experience { background: var(--pink-050); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 30px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--pink-600); font-family: var(--serif); font-size: 1.35rem; }
.steps strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.steps p { margin: 6px 0 0; color: var(--muted); }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 4px; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.25rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--pink-600); transition: transform .25s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; padding: 0 40px 26px 4px; color: var(--muted); }
.map-link { display: inline-block; margin-top: 10px; color: var(--pink-700); font-weight: 750; text-underline-offset: 5px; }
.map-link:hover { color: var(--pink-600); }

.contact { padding-bottom: 40px; }
.contact-card { position: relative; overflow: hidden; padding: 96px 60px; color: white; border: 1px solid rgba(233,154,187,.28); border-radius: 38px; background: var(--black); text-align: center; box-shadow: 0 28px 80px rgba(8,7,8,.2); }
.contact-card::before, .contact-card::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.contact-card::before { width: 420px; height: 420px; top: -260px; left: -110px; }
.contact-card::after { width: 500px; height: 500px; right: -240px; bottom: -350px; }
.contact-card .eyebrow { color: var(--pink-100); }
.contact-card h2 { position: relative; z-index: 1; }
.contact-card h2 em { color: white; }
.contact-card > p:not(.eyebrow) { position: relative; z-index: 1; margin: 24px auto 30px; color: rgba(255,255,255,.78); }
.button-light { position: relative; z-index: 2; color: var(--black); border-color: var(--pink-600); background: var(--pink-600); }
.button-light:hover { color: var(--black); background: white; }
.contact-meta { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 720px; margin: 62px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.26); }
.contact-meta div { display: flex; flex-direction: column; }
.contact-meta small { color: var(--pink-100); font-size: .66rem; letter-spacing: .18em; }
.contact-meta strong { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.contact-link { color: white; font-family: var(--serif); font-size: 1rem; text-decoration-color: var(--pink-600); text-decoration-thickness: 1px; text-underline-offset: 5px; transition: color .2s ease; }
.contact-link:hover { color: var(--pink-600); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding-block: 34px; }
.site-footer p { margin: 0; color: var(--muted); font-size: .75rem; }
.footer-links { display: flex; justify-content: flex-end; gap: 24px; }
.footer-links a { font-size: .76rem; }
.brand-footer { overflow: hidden; border-radius: 10px; background: var(--black); }
.brand-footer .brand-logo { width: 178px; height: 72px; }

.service-dialog { width: min(570px, calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 0; color: var(--ink); border: 0; border-radius: 32px; background: transparent; box-shadow: 0 30px 90px rgba(57, 11, 31, .3); }
.service-dialog::backdrop { background: rgba(25, 10, 17, .68); backdrop-filter: blur(7px); }
.service-dialog[open] { animation: dialog-in .28s ease-out; }
.dialog-content { position: relative; overflow: hidden; padding: 48px; border: 1px solid rgba(255,255,255,.55); border-radius: 32px; background: linear-gradient(155deg, #fff 0%, var(--pink-050) 100%); }
.dialog-content::after { content: ""; position: absolute; z-index: 0; top: -130px; right: -130px; width: 280px; height: 280px; border: 1px solid var(--pink-300); border-radius: 50%; opacity: .55; }
.dialog-content > * { position: relative; z-index: 1; }
.dialog-close { position: absolute; z-index: 3; top: 18px; right: 18px; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; color: var(--pink-700); border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.dialog-close:hover { color: white; background: var(--pink-600); }
.dialog-symbol { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 28px; color: white; border-radius: 50%; background: var(--pink-600); font-size: 1.4rem; box-shadow: 0 12px 28px rgba(181, 31, 91, .24); }
.service-dialog h2 { max-width: 470px; margin-bottom: 22px; font-size: clamp(2.25rem, 7vw, 3.4rem); }
.dialog-description { margin-bottom: 28px; color: var(--muted); }
.dialog-preview { margin-bottom: 30px; padding: 18px 20px; border-left: 3px solid var(--pink-600); border-radius: 0 14px 14px 0; background: white; box-shadow: 0 10px 30px rgba(63, 20, 38, .07); }
.dialog-preview small { display: block; margin-bottom: 7px; color: var(--pink-600); font-size: .64rem; font-weight: 800; letter-spacing: .16em; }
.dialog-preview p { margin: 0; font-size: .92rem; }
.dialog-actions { display: flex; gap: 12px; }
.dialog-actions .button { flex: 1; min-height: 50px; padding-inline: 18px; border: 0; cursor: pointer; }
.button-secondary { color: var(--ink); border: 1px solid var(--line) !important; background: white; box-shadow: none; }
.button-secondary:hover { color: var(--pink-700); background: var(--pink-100); box-shadow: none; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > .button { display: none; }
  .menu-button { display: flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; padding: 12px; border: 0; border-radius: 50%; background: rgba(233,154,187,.15); }
  .menu-button span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--pink-600); }
  .main-nav { position: absolute; top: 96px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 28px; border-bottom: 1px solid rgba(233,154,187,.24); background: #000; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; }
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  
  .section-heading, .experience-grid, .faq { grid-template-columns: 1fr; gap: 38px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item:nth-child(odd) { border-right: 0; }
  .about-card { grid-template-columns: .55fr 1.45fr; padding: 56px 46px; }
  .about-tags { grid-column: 1 / 3; flex-direction: row; }
  .about-tags span { flex: 1; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 32px, 1180px); }
  .section-padding { padding-block: 82px; }
  .site-header { min-height: 82px; padding-inline: 16px; }
  .main-nav { top: 82px; }
  .brand-logo { width: 154px; height: 62px; }
  .hero { gap: 38px; min-height: auto; padding-block: 54px 72px; }
  h1 { font-size: clamp(3.3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.6rem, 12vw, 3.8rem); }
  .hero-description { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .text-link { justify-content: center; }
  .hero-highlights { flex-direction: column; gap: 12px; margin-top: 38px; }
  
  .hero-image-wrap { border-radius: 24px; }
  
  .hero-seal { right: -8px; bottom: 70px; width: 110px; height: 110px; }
  .intro-strip { justify-content: flex-start; gap: 22px; }
  .section-heading { margin-bottom: 42px; }
  .service-item { min-height: 112px; padding-inline: 18px; }
  .service-item:hover { padding-left: 24px; }
  .about-card { grid-template-columns: 1fr; gap: 18px; min-height: auto; padding: 48px 26px; }
  .about-monogram { position: absolute; top: 15px; right: 20px; font-size: 11rem; }
  .about-tags { grid-column: auto; flex-direction: column; margin-top: 20px; }
  .experience-grid { gap: 44px; }
  .steps li { grid-template-columns: 44px 1fr; }
  .faq { gap: 45px; }
  .faq-list summary { font-size: 1.05rem; }
  .contact-card { padding: 70px 24px; border-radius: 28px; }
  .contact-meta { grid-template-columns: 1fr; gap: 22px; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .dialog-content { padding: 42px 22px 24px; }
  .dialog-actions { flex-direction: column-reverse; }
  .dialog-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.image-button-overlay {
  position: absolute;
  top: 78.5%;
  left: 58%;
  width: 32.5%;
  height: 6.8%;
  z-index: 10;
  display: block;
  cursor: pointer;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.2s ease;
}
.image-button-overlay:hover {
  background-color: rgba(255, 255, 255, 0.25);
}
