:root {
    --wine: #8b4f5d;
    --wine-dark: #663542;
    --wine-soft: #f5e9ec;
    --sage: #6f7e70;
    --sage-soft: #e9eee8;
    --gold: #b6935e;
    --cream: #f8f3ec;
    --paper: #fffdf9;
    --ink: #292423;
    --muted: #706968;
    --line: rgba(63, 49, 48, 0.14);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(78, 54, 51, 0.12);
    --shadow-soft: 0 12px 36px rgba(78, 54, 51, 0.08);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

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

h1,
h2,
.display-font {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--wine-dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

:focus-visible {
    outline: 3px solid rgba(139, 79, 93, 0.42);
    outline-offset: 4px;
}

.announcement {
    color: #f9eeee;
    background: var(--wine-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.announcement a {
    transition: color 180ms ease;
}

.announcement a:hover {
    color: #f1c7d0;
}

.announcement-note {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 253, 249, 0.92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(60, 42, 41, 0.07);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--wine);
    border-radius: 50% 50% 48% 42%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    font-style: italic;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 600;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav > a,
.nav-dropdown > a {
    position: relative;
    padding-block: 30px;
    transition: color 180ms ease;
}

.desktop-nav > a::after,
.nav-dropdown > a::after {
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--wine);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-dropdown:hover > a {
    color: var(--wine);
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-dropdown:hover > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 8px);
    left: 50%;
    width: 285px;
    display: grid;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: background 160ms ease, color 160ms ease;
}

.dropdown-panel a:hover {
    color: var(--wine);
    background: var(--wine-soft);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 1px;
    display: block;
    background: var(--ink);
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 99;
    height: calc(100dvh - 84px);
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.mobile-menu-inner {
    display: grid;
    gap: 6px;
    padding-block: 24px 44px;
}

.mobile-menu a {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu .mobile-service-link {
    padding: 5px 0 5px 18px;
    color: var(--muted);
    font-size: 15px;
}

.mobile-menu-label {
    margin-top: 8px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--wine);
    box-shadow: 0 10px 25px rgba(139, 79, 93, 0.24);
}

.button-primary:hover {
    background: var(--wine-dark);
    box-shadow: 0 14px 32px rgba(139, 79, 93, 0.3);
}

.button-ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(65, 49, 48, 0.18);
}

.button-ghost:hover {
    color: var(--wine);
    background: var(--white);
}

.button-light {
    color: var(--wine-dark);
    background: var(--white);
}

.button-small {
    min-height: 42px;
    padding: 10px 20px;
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--wine);
    font-size: 14px;
    font-weight: 700;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}

.home-hero {
    position: relative;
    min-height: 710px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.home-hero::before {
    position: absolute;
    top: -180px;
    left: -200px;
    width: 530px;
    height: 530px;
    content: "";
    background: radial-gradient(circle, rgba(139, 79, 93, 0.13), transparent 68%);
    border-radius: 50%;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 54px;
    padding-block: 64px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    max-width: 650px;
    margin-bottom: 26px;
    font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.hero-copy h1 em {
    color: var(--wine);
    font-weight: 500;
}

.hero-copy > p {
    max-width: 610px;
    margin-bottom: 32px;
    color: #5f5755;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin: 34px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-trust li::before {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    content: "✓";
    color: var(--sage);
    background: var(--sage-soft);
    border-radius: 50%;
    font-size: 11px;
}

.hero-visual {
    position: relative;
    min-width: 0;
}

.hero-image-frame {
    position: relative;
    aspect-ratio: 0.94;
    overflow: hidden;
    border-radius: 230px 230px 36px 36px;
    box-shadow: var(--shadow);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
}

.hero-image-frame::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 58%, rgba(60, 39, 37, 0.22));
}

.hero-seal {
    position: absolute;
    right: -28px;
    bottom: 38px;
    z-index: 2;
    width: 146px;
    height: 146px;
    display: grid;
    place-content: center;
    padding: 18px;
    color: var(--white);
    background: var(--wine);
    border: 8px solid var(--cream);
    border-radius: 50%;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.hero-seal strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
    font-weight: 500;
}

.hero-seal span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section {
    padding-block: 110px;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    color: var(--white);
    background: #312b2a;
}

.section-heading {
    max-width: 750px;
    margin-bottom: 52px;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.section-heading p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(70, 48, 46, 0.05);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
    border-color: rgba(139, 79, 93, 0.32);
    box-shadow: var(--shadow-soft);
    transform: translateY(-7px);
}

.service-card-image {
    position: relative;
    aspect-ratio: 1.35;
    overflow: hidden;
    background: var(--cream);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-card:hover .service-card-image img {
    transform: scale(1.045);
}

.service-card-dr-med-schrammek .service-card-image {
    background: #eaf5ff;
}

.service-card-dr-med-schrammek .service-card-image img,
.service-card-dr-med-schrammek:hover .service-card-image img {
    object-fit: contain;
    transform: none;
}

.service-card-green-peel .service-card-image {
    background: #f7f7f7;
}

.service-card-green-peel .service-card-image img,
.service-card-green-peel:hover .service-card-image img {
    object-fit: contain;
    transform: none;
}

.service-card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--wine-dark);
    background: rgba(255, 253, 249, 0.9);
    border-radius: 50%;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 14px;
    backdrop-filter: blur(8px);
}

.service-card-body {
    padding: 26px;
}

.service-category {
    display: block;
    margin-bottom: 9px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-card h3 {
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.service-card-logo {
    min-height: 42px;
    display: flex;
    align-items: center;
    margin: 7px 0 13px;
}

.service-card-logo img {
    width: auto;
    max-width: 190px;
    height: auto;
    max-height: 42px;
    object-fit: contain;
}

.service-card p {
    min-height: 82px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.editorial-visual {
    position: relative;
}

.editorial-visual img {
    width: 100%;
    aspect-ratio: 0.96;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.editorial-visual::before {
    position: absolute;
    right: -30px;
    bottom: -30px;
    z-index: -1;
    width: 68%;
    height: 68%;
    content: "";
    border: 1px solid rgba(139, 79, 93, 0.28);
    border-radius: var(--radius-lg);
}

.editorial-copy h2 {
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 4.5vw, 4.1rem);
}

.editorial-copy > p {
    color: var(--muted);
    font-size: 17px;
}

.principles {
    display: grid;
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.principles li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 19px 0;
    border-bottom: 1px solid var(--line);
}

.principles strong {
    color: var(--wine);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-weight: 500;
}

.principles span {
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    padding: 34px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.process-card span {
    display: block;
    margin-bottom: 44px;
    color: #d6b8bf;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
}

.process-card h3 {
    margin-bottom: 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
}

.process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 70px;
}

.guide-article h2,
.article-content h2 {
    margin: 56px 0 18px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.guide-article h2:first-child,
.article-content h2:first-child {
    margin-top: 0;
}

.guide-article h3,
.article-content h3 {
    margin: 30px 0 12px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
    font-weight: 500;
}

.guide-article p,
.article-content p {
    color: #5f5856;
    font-size: 17px;
}

.guide-article strong,
.article-content strong {
    color: var(--ink);
}

.guide-aside,
.service-sidebar {
    position: sticky;
    top: 112px;
    padding: 28px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.guide-aside h3,
.service-sidebar h2 {
    margin-bottom: 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.guide-aside ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 14px;
}

.guide-aside a:hover {
    color: var(--wine);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.faq-item summary {
    position: relative;
    padding: 20px 52px 20px 22px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    content: "+";
    color: var(--wine);
    font-size: 24px;
    font-weight: 400;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--muted);
}

.faq-answer p {
    margin: 0;
}

.contact-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    color: var(--white);
    background: var(--wine-dark);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-copy,
.contact-form-wrap {
    padding: 56px;
}

.contact-copy {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent);
}

.contact-copy .eyebrow {
    color: #e8cbd1;
}

.contact-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.contact-copy > p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-details {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.contact-detail {
    display: grid;
    gap: 2px;
}

.contact-detail small {
    color: rgba(255, 255, 255, 0.53);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail span {
    font-size: 15px;
    font-weight: 600;
}

.contact-form-wrap {
    color: var(--ink);
    background: var(--white);
}

.contact-form-wrap h3 {
    margin-bottom: 6px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-weight: 500;
}

.contact-form-wrap > p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    font-size: 12px;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 108px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--wine);
    box-shadow: 0 0 0 4px rgba(139, 79, 93, 0.1);
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.service-hero {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.service-hero::before {
    position: absolute;
    top: -240px;
    left: -180px;
    width: 520px;
    height: 520px;
    content: "";
    background: radial-gradient(circle, rgba(139, 79, 93, 0.12), transparent 70%);
    border-radius: 50%;
}

.service-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 0.88fr;
    align-items: center;
    gap: 70px;
    padding-block: 60px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 12px;
}

.breadcrumbs a:hover {
    color: var(--wine);
}

.service-hero-copy h1 {
    margin-bottom: 24px;
    font-size: clamp(3rem, 5.5vw, 5rem);
}

.service-brand-logo {
    min-height: 58px;
    display: flex;
    align-items: center;
    margin: 20px 0 18px;
}

.service-brand-logo img {
    width: auto;
    max-width: min(260px, 72%);
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.service-split-title {
    display: grid;
    gap: 6px;
}

.service-headline-brand,
.service-headline-detail {
    display: block;
}

.service-headline-brand {
    font-size: clamp(2.15rem, 3.7vw, 3.55rem);
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.service-headline-detail {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 0.98;
}

.service-dp-dermaceuticals .service-headline-detail {
    max-width: 660px;
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.service-hero-copy > p {
    max-width: 700px;
    margin-bottom: 30px;
    color: #5e5755;
    font-size: 18px;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.service-highlights span {
    padding: 8px 13px;
    color: var(--sage);
    background: var(--sage-soft);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.service-hero-image {
    position: relative;
}

.service-hero-image img {
    width: 100%;
    aspect-ratio: 0.9;
    object-fit: cover;
    border-radius: 190px 190px var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-dr-med-schrammek .service-hero-image img {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    background: #eaf5ff;
}

.service-hero-image::after {
    position: absolute;
    right: -22px;
    bottom: -22px;
    z-index: -1;
    width: 72%;
    height: 72%;
    content: "";
    background: var(--wine-soft);
    border-radius: var(--radius-lg);
}

.benefits-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: var(--white);
    background: var(--wine-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.benefit-item {
    min-height: 132px;
    display: grid;
    align-content: center;
    padding: 25px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

.benefit-item span {
    display: block;
    margin-bottom: 5px;
    color: #dbb8c1;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
}

.benefit-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.55;
}

.service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 76px;
}

.article-intro {
    margin-bottom: 48px;
    padding-bottom: 38px;
    border-bottom: 1px solid var(--line);
}

.article-intro .eyebrow {
    margin-bottom: 16px;
}

.article-intro h2 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 4vw, 3.7rem);
}

.article-intro p {
    max-width: 800px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
}

.service-seo-links {
    margin: -12px 0 52px;
}

.service-seo-links-label {
    display: block;
    margin-bottom: 13px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.service-seo-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-seo-links-grid a {
    position: relative;
    min-height: 138px;
    display: flex;
    flex-direction: column;
    padding: 20px 45px 20px 20px;
    background: linear-gradient(145deg, var(--cream), #fffdf9);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 24px rgba(78, 54, 51, .04);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-seo-links-grid a:hover {
    border-color: rgba(139, 79, 93, .34);
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.service-seo-links-grid strong {
    margin-bottom: 8px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.service-seo-links-grid span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.service-seo-links-grid i {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--wine);
    font-size: 17px;
    font-style: normal;
}

.notice-box {
    margin-top: 50px;
    padding: 22px 24px;
    color: #5e4c4f;
    background: var(--wine-soft);
    border-left: 3px solid var(--wine);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
}

.source-link {
    margin-top: 18px;
    font-size: 13px;
}

.service-sidebar p {
    color: var(--muted);
    font-size: 14px;
}

.service-sidebar .button {
    width: 100%;
    margin-top: 10px;
}

.sidebar-meta {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
}

.sidebar-meta span {
    display: grid;
    color: var(--muted);
    font-size: 12px;
}

.sidebar-meta strong {
    color: var(--ink);
    font-size: 13px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-card {
    display: grid;
    grid-template-columns: 104px 1fr;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.related-card img {
    width: 104px;
    height: 100%;
    min-height: 122px;
    object-fit: cover;
}

.related-card div {
    align-self: center;
    padding: 18px;
}

.related-card small {
    color: var(--wine);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.related-card h3 {
    margin: 6px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.service-cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
    padding: 54px;
    color: var(--white);
    background: var(--wine-dark);
    border-radius: var(--radius-lg);
}

.service-cta::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.service-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.service-cta p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
}

.service-cta .button {
    position: relative;
    z-index: 1;
}

.site-footer {
    padding-top: 72px;
    color: rgba(255, 255, 255, 0.68);
    background: #272221;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
}

.brand-light .brand-copy strong {
    color: var(--white);
}

.brand-light .brand-copy small {
    color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0 0;
    font-size: 14px;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    font-size: 13px;
    list-style: none;
}

.site-footer a {
    transition: color 160ms ease;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
}

.footer-contact h2 {
    margin-bottom: 9px;
}

.footer-contact address {
    margin-bottom: 8px;
    font-style: normal;
}

.footer-bottom {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal-links a,
.footer-legal-links button {
    padding: 0;
    color: rgba(255, 255, 255, .7);
    background: transparent;
    border: 0;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.cookie-notice[hidden] {
    display: none !important;
}

.cookie-notice {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 120;
    width: min(420px, calc(100vw - 44px));
    padding: 22px;
    color: var(--white);
    background: linear-gradient(145deg, #8b4f5d, #713c49);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    box-shadow: 0 22px 58px rgba(63, 31, 39, .34);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 220ms ease, transform 220ms ease;
}

.cookie-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.cookie-notice-head img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    padding: 5px;
    background: rgba(255, 255, 255, .92);
    border-radius: 12px;
}

.cookie-notice-head div {
    display: grid;
    line-height: 1.25;
}

.cookie-notice-head small {
    color: rgba(255, 255, 255, .68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cookie-notice-head strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 500;
}

.cookie-notice > p {
    margin-bottom: 17px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.65;
}

.cookie-accept {
    width: 100%;
    min-height: 46px;
    color: var(--ink);
    background: var(--paper);
    border: 0;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.cookie-accept:hover {
    background: #f2e6da;
    transform: translateY(-1px);
}

.cookie-privacy-link {
    display: block;
    margin-top: 13px;
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-hero {
    padding: 86px 0 78px;
    background:
        radial-gradient(circle at 88% 20%, rgba(182, 147, 94, .16), transparent 30%),
        linear-gradient(135deg, var(--cream), var(--wine-soft));
    border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
    max-width: 900px;
}

.legal-hero h1 {
    max-width: 780px;
    margin: 15px 0 22px;
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.legal-hero p {
    max-width: 730px;
    margin-bottom: 0;
    color: #5f5755;
    font-size: 18px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 760px);
    justify-content: space-between;
    align-items: start;
    gap: 80px;
}

.legal-toc {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 9px;
    padding: 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-toc strong {
    margin-bottom: 6px;
    color: var(--wine);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.legal-toc a {
    color: var(--muted);
    font-size: 13px;
}

.legal-toc a:hover {
    color: var(--wine);
}

.legal-article > section {
    position: relative;
    padding-top: 18px;
    margin-bottom: 58px;
    scroll-margin-top: 120px;
}

.legal-lead {
    margin-bottom: 48px;
    padding: 24px 26px;
    color: #5e5654;
    background: var(--wine-soft);
    border-left: 3px solid var(--wine);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-number {
    display: block;
    margin-bottom: 8px;
    color: var(--wine);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
}

.legal-article h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.legal-article p {
    color: var(--muted);
}

.legal-article a {
    color: var(--wine);
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-note {
    margin-top: 25px;
    padding: 20px 22px;
    color: #5b504e;
    background: var(--sage-soft);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.legal-table-wrap {
    margin: 26px 0;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.legal-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 13px;
}

.legal-table th,
.legal-table td {
    padding: 15px 17px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    color: var(--wine-dark);
    background: var(--wine-soft);
    font-size: 11px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.legal-table tr:last-child td {
    border-bottom: 0;
}

.legal-contact-card {
    display: grid;
    gap: 7px;
    margin: 22px 0 26px;
    padding: 24px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.legal-contact-card strong {
    margin-bottom: 4px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 500;
}

.legal-contact-card span {
    color: var(--muted);
    font-size: 14px;
}

.legal-sources {
    padding: 26px !important;
    background: var(--cream);
    border-radius: var(--radius);
}

.legal-sources h2 {
    font-size: 24px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 17px 9px 10px;
    color: var(--white);
    background: #247c52;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(18, 76, 49, 0.28);
    font-size: 13px;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
    background: #1b6944;
    transform: translateY(-3px);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 18px;
}

.whatsapp-icon svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.mobile-call-float {
    position: fixed;
    left: 14px;
    bottom: 14px;
    z-index: 90;
    min-height: 50px;
    display: none;
    align-items: center;
    gap: 9px;
    padding: 9px 17px 9px 11px;
    color: var(--white);
    background: var(--wine);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(91, 48, 59, .28);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.mobile-call-float:hover {
    background: var(--wine-dark);
    transform: translateY(-3px);
}

.mobile-call-float svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav > a,
    .nav-dropdown > a {
        font-size: 13px;
    }

    .desktop-appointment {
        display: none;
    }

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

    .guide-layout,
    .service-content-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .home-hero {
        min-height: auto;
    }

    .hero-grid,
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hero-grid {
        padding-block: 72px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .hero-image-frame {
        aspect-ratio: 1.1;
        border-radius: 180px 180px 28px 28px;
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .editorial-visual {
        width: min(100%, 620px);
    }

    .guide-layout,
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .guide-aside,
    .service-sidebar {
        position: static;
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }

    .service-hero-grid {
        padding-block: 52px 74px;
    }

    .service-hero-image {
        width: min(100%, 580px);
        margin-inline: auto;
    }

    .service-hero-image img {
        aspect-ratio: 1.05;
    }

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

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

    .benefit-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

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

    .service-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .announcement-note {
        display: none;
    }

    .announcement-inner {
        min-height: 32px;
    }

    .header-inner {
        min-height: 74px;
    }

    .brand-mark {
        width: 41px;
        height: 41px;
        font-size: 23px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .mobile-menu {
        height: calc(100dvh - 74px);
    }

    .section {
        padding-block: 78px;
    }

    .home-hero::before {
        display: none;
    }

    .hero-grid {
        padding-block: 54px 70px;
    }

    .hero-copy h1 {
        font-size: clamp(2.85rem, 14vw, 4rem);
    }

    .hero-copy > p,
    .service-hero-copy > p {
        font-size: 16px;
    }

    .hero-actions .button,
    .service-hero-copy .hero-actions .button {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        justify-items: start;
        margin-inline: auto;
        width: max-content;
        max-width: 100%;
    }

    .hero-image-frame {
        aspect-ratio: 0.95;
        border-radius: 130px 130px 24px 24px;
    }

    .hero-seal {
        right: -5px;
        bottom: -35px;
        width: 118px;
        height: 118px;
        border-width: 6px;
    }

    .hero-seal strong {
        font-size: 18px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .services-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-card p {
        min-height: auto;
    }

    .editorial-visual::before {
        right: -12px;
        bottom: -16px;
    }

    .process-card span {
        margin-bottom: 24px;
    }

    .contact-copy,
    .contact-form-wrap {
        padding: 34px 24px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .service-hero-grid {
        gap: 40px;
        padding-block: 40px 62px;
    }

    .breadcrumbs {
        margin-bottom: 20px;
    }

    .service-hero-copy h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .service-hero-image img {
        aspect-ratio: 0.98;
        border-radius: 120px 120px 26px 26px;
    }

    .benefit-item,
    .benefit-item:nth-child(2) {
        min-height: auto;
        padding: 22px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .benefit-item:last-child {
        border-bottom: 0;
    }

    .guide-article p,
    .article-content p {
        font-size: 16px;
    }

    .service-cta {
        padding: 34px 24px;
        border-radius: var(--radius);
    }

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

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        min-height: 96px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        padding-block: 18px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }

    .mobile-call-float {
        display: flex;
    }
}

@media (max-width: 900px) {
    .service-seo-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .legal-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .legal-toc strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .service-seo-links {
        margin-bottom: 42px;
    }

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

    .service-seo-links-grid a {
        min-height: 0;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .cookie-notice {
        left: 12px;
        bottom: 76px;
        width: calc(100vw - 24px);
        padding: 19px;
        border-radius: 18px;
    }

    .legal-hero {
        padding: 58px 0 54px;
    }

    .legal-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .legal-hero p {
        font-size: 16px;
    }

    .legal-toc {
        grid-template-columns: 1fr;
    }

    .legal-toc strong {
        grid-column: auto;
    }

    .legal-article > section {
        margin-bottom: 44px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Dynamic branding, mobile search and Hakkımızda */
.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;
}

.brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 7px 20px rgba(50, 38, 38, 0.14);
}

.brand-light .brand-logo {
    filter: none;
}

.search-field svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.site-search[hidden] {
    display: none;
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    align-items: start;
    padding: 8vh 18px 18px;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    padding: 0;
    background: rgba(41, 28, 31, 0.58);
    border: 0;
    backdrop-filter: blur(7px);
}

.site-search-dialog {
    position: relative;
    width: min(100%, 620px);
    max-height: 82vh;
    margin-inline: auto;
    padding: 26px;
    overflow-y: auto;
    background: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 26px;
    box-shadow: 0 30px 90px rgba(42, 25, 28, 0.26);
}

.site-search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.site-search-head .eyebrow {
    margin-bottom: 5px;
}

.site-search-head h2 {
    margin: 0;
    font-size: 36px;
}

.site-search-head > button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    color: var(--muted);
    background: var(--cream);
    border: 0;
    border-radius: 50%;
    font-size: 29px;
    font-weight: 300;
}

.search-field {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 15px;
    color: var(--wine);
    background: var(--white);
    border: 1px solid rgba(139, 79, 93, 0.28);
    border-radius: 14px;
    box-shadow: 0 0 0 4px var(--wine-soft);
}

.search-field input {
    width: 100%;
    min-height: 52px;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
}

.search-results {
    display: grid;
    gap: 7px;
    margin-top: 18px;
}

.search-results a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 14px;
    background: var(--cream);
    border-radius: 12px;
    transition: color 160ms ease, background 160ms ease;
}

.search-results a:hover {
    color: var(--wine);
    background: var(--wine-soft);
}

.search-results span {
    font-weight: 700;
}

.search-results small {
    color: var(--muted);
    text-align: right;
}

.search-empty {
    margin: 10px 0 0;
    padding: 16px;
    color: var(--muted);
    text-align: center;
}

body.search-open {
    overflow: hidden;
}

.about-hero {
    overflow: hidden;
    background: linear-gradient(135deg, #fbf5ef 0%, #fffdf9 52%, #f2e4e7 100%);
}

.about-hero-grid {
    min-height: 660px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(50px, 8vw, 100px);
    padding-block: 70px;
}

.about-hero-copy h1 {
    margin: 15px 0 24px;
    font-size: clamp(3.3rem, 6vw, 6rem);
}

.about-hero-copy > p {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 18px;
}

.about-hero-visual {
    position: relative;
}

.about-hero-visual > img {
    width: 100%;
    aspect-ratio: 1.15;
    object-fit: cover;
    border-radius: 220px 220px 34px 34px;
    box-shadow: var(--shadow);
}

.about-signature {
    position: absolute;
    right: -18px;
    bottom: 30px;
    min-width: 190px;
    display: grid;
    padding: 21px 24px;
    color: var(--white);
    background: var(--wine);
    border-radius: 18px 4px 18px 18px;
    box-shadow: var(--shadow);
}

.about-signature strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
}

.about-signature span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(50px, 9vw, 120px);
}

.about-story-copy p {
    color: var(--muted);
    font-size: 18px;
}

.about-story-copy p:first-child::first-letter {
    float: left;
    margin: 7px 9px 0 0;
    color: var(--wine);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 62px;
    line-height: 0.72;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-card {
    min-height: 270px;
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
}

.value-card > span {
    display: inline-block;
    margin-bottom: 52px;
    color: var(--wine);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
}

.value-card h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 25px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.about-approach-shell {
    max-width: 900px;
    text-align: center;
}

.about-approach-shell h2 {
    margin: 13px 0 22px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.about-approach-shell p {
    color: var(--muted);
    font-size: 18px;
}

.service-green-peel .service-hero-grid {
    grid-template-columns: 0.9fr 1.25fr;
}

.service-green-peel .service-hero-image img {
    aspect-ratio: 960 / 796;
    object-position: center;
    border-radius: 150px 150px 30px 30px;
}

.dark-eyebrow {
    color: #debfc6;
}

@media (max-width: 900px) {
    .header-inner {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr) 46px;
        gap: 12px;
    }

    .header-inner > .brand {
        grid-column: 2;
        justify-self: center;
    }

    .header-inner > .header-actions {
        grid-column: 3;
        justify-self: end;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .about-hero-grid,
    .about-story-grid,
    .service-green-peel .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-grid {
        min-height: auto;
        padding-block: 52px 78px;
    }

    .about-hero-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

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

    .service-green-peel .service-hero-image img {
        aspect-ratio: 960 / 796;
        border-radius: 110px 110px 26px 26px;
    }
}

@media (max-width: 640px) {
    .header-inner > .brand .brand-copy small {
        display: none;
    }

    .header-inner > .brand .brand-copy strong {
        font-size: 14px;
        white-space: nowrap;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

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

    .service-brand-logo {
        min-height: 48px;
        margin-block: 16px;
    }

    .service-brand-logo img {
        max-width: min(220px, 78%);
        max-height: 48px;
    }

    .service-headline-brand {
        font-size: clamp(1.9rem, 9.7vw, 2.5rem);
    }

    .service-headline-detail {
        font-size: clamp(2.35rem, 11.5vw, 3.3rem);
    }

    .service-dp-dermaceuticals .service-headline-detail {
        font-size: clamp(1.65rem, 7.4vw, 2rem);
        line-height: 1.1;
    }

    .header-inner > .brand {
        gap: 8px;
    }

    .site-search {
        padding: 12px;
    }

    .site-search-dialog {
        max-height: calc(100dvh - 24px);
        padding: 22px 18px;
        border-radius: 21px;
    }

    .about-hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .about-hero-visual > img {
        aspect-ratio: 0.95;
        border-radius: 120px 120px 24px 24px;
    }

    .about-signature {
        right: -5px;
        bottom: -22px;
    }

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

    .value-card {
        min-height: auto;
    }

    .value-card > span {
        margin-bottom: 26px;
    }

    .service-green-peel .service-hero-image img {
        aspect-ratio: 960 / 796;
        border-radius: 70px 70px 22px 22px;
    }
}
