/* Dental Turkey — premium aesthetic layer */
:root {
    --bg: #f3f6fb;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.07);
    --brand: #0a3d5c;
    --brand2: #0b6e9e;
    --accent: #0ea5e9;
    --accent-soft: rgba(14, 165, 233, 0.12);
    --topbar: #070b14;
    --shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
    --shadow-hover: 0 28px 70px rgba(15, 23, 42, 0.14);
    --radius: 20px;
    --container: min(1200px, calc(100% - 10vw));
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.35s;
    --t-med: 0.55s;
    font-synthesis: none;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

h1 {
    font-family: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

h2, h3 {
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.02em;
    line-height: 1.18;
}

a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #fff;
    border-radius: 10px;
    z-index: 10000;
    box-shadow: var(--shadow);
}

/* Top bar */
.topbar {
    background: var(--topbar);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    flex-wrap: wrap;
    align-items: center;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar__link {
    color: inherit;
    text-decoration: none;
}

.topbar__link:hover {
    text-decoration: underline;
}

.topbar__wa {
    font-weight: 700;
}

.topbar__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.topbar__muted {
    opacity: 0.85;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

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

.brand img {
    height: 44px;
    width: auto;
}

.main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    color: #0f172a;
}

.main-nav a:hover {
    color: var(--brand2);
}

.has-sub {
    position: relative;
}

.mega {
    position: absolute;
    left: 0;
    top: calc(100% + 0.75rem);
    width: min(520px, 70vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.has-sub:hover .mega,
.has-sub:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mega__grid a {
    display: block;
    padding: 0.55rem 0.65rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.88rem;
}

.mega__grid a:hover {
    background: rgba(14, 165, 233, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.lang {
    display: inline-flex;
    background: rgba(15, 23, 42, 0.06);
    border-radius: 999px;
    padding: 0.2rem;
    gap: 0.15rem;
}

.lang__link {
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.45rem 0.55rem;
    border-radius: 999px;
    color: var(--muted);
}

.lang__link.is-active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.7rem 1.1rem;
    font-weight: 700;
    font-size: 0.92rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    box-shadow: 0 10px 28px rgba(12, 74, 110, 0.28);
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(12, 74, 110, 0.35);
}

.btn--pill {
    white-space: nowrap;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.btn--dark {
    background: #0f172a;
    color: #fff;
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transition: background var(--t-fast), transform var(--t-fast) var(--ease-out);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.btn--light {
    background: #fff;
    color: var(--brand);
}

.btn--lg {
    padding: 0.95rem 1.35rem;
}

.btn--block {
    width: 100%;
}

.btn--cookie {
    flex: 0 0 auto;
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #0f172a;
    margin: 4px auto;
    border-radius: 2px;
}

/* Mobile panel */
.mobile-panel {
    display: none;
}

.mobile-panel.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
}

.mobile-panel__scrim {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
}

.mobile-panel__sheet {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(420px, 92vw);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 1rem;
    overflow: auto;
}

.mobile-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.icon-btn {
    border: none;
    background: rgba(15, 23, 42, 0.06);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.4rem;
    cursor: pointer;
}

.mobile-nav {
    display: grid;
    gap: 0.35rem;
}

.mobile-nav a {
    text-decoration: none;
    padding: 0.85rem 0.75rem;
    border-radius: 14px;
    font-weight: 700;
    color: #0f172a;
}

.mobile-nav a:hover {
    background: rgba(14, 165, 233, 0.08);
}

.mobile-nav__cta {
    margin-top: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff !important;
}

.mobile-panel__lang {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-panel__lang a {
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
}

@keyframes heroShift {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate(2%, -2%) scale(1.03); opacity: 0.75; }
}

@keyframes heroBlob {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(12px, -18px); }
    66% { transform: translate(-10px, 10px); }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #062a42 0%, #0c4a6e 38%, #0a6b8a 65%, #0d5f7a 100%);
    color: #fff;
    padding: clamp(2.75rem, 7vw, 5rem) 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.85;
    pointer-events: none;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse 50% 45% at 75% 15%, rgba(125, 211, 252, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 10% 70%, rgba(14, 165, 233, 0.12) 0%, transparent 50%);
    animation: heroShift 14s ease-in-out infinite;
}

.hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__blobs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.35;
    animation: heroBlob 18s ease-in-out infinite;
}

.hero__blobs span:nth-child(1) {
    width: 280px;
    height: 280px;
    background: #38bdf8;
    top: -80px;
    right: 8%;
}

.hero__blobs span:nth-child(2) {
    width: 200px;
    height: 200px;
    background: #a5f3fc;
    bottom: 10%;
    left: 5%;
    animation-delay: -6s;
}

.hero__blobs span:nth-child(3) {
    width: 160px;
    height: 160px;
    background: #67e8f9;
    top: 40%;
    left: 35%;
    animation-delay: -12s;
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    margin: 0.35rem 0 1rem;
}

.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 46ch;
}

.kicker {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
}

.kicker--on-dark {
    color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 1.25rem;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero__frame {
    position: relative;
    border-radius: calc(var(--radius) + 8px);
    padding: 3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(125, 211, 252, 0.25), rgba(255, 255, 255, 0.15));
    box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.hero__frame:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.hero__frame img {
    border-radius: calc(var(--radius) + 4px);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Strip */
.strip {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--line);
}

.strip--glass {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 0;
    flex-wrap: wrap;
}

.strip__text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--brand);
    margin-bottom: 0.15rem;
}

.strip__text p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.strip__cta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: clamp(3rem, 7vw, 5rem) 0;
}

.section--muted {
    background: #eef2ff;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.section-head--left {
    text-align: left;
    margin: 0 0 1.5rem;
}

.section-head--row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    text-align: left;
    max-width: none;
}

.section-head h2 {
    margin: 0.35rem 0 0.5rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--brand);
}

.sub {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.section .kicker {
    color: rgba(12, 74, 110, 0.75);
}

.section-foot {
    text-align: center;
    margin-top: 1.25rem;
}

.text-link {
    font-weight: 800;
    color: var(--brand2);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.cards {
    display: grid;
    gap: 1rem;
}

.cards--6 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cards--4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards--3 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem 1.25rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: var(--brand);
}

.card p {
    margin: 0;
    color: #334155;
    font-size: 0.95rem;
}

.card--icon .ico {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
}

.split__media img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.split .kicker {
    color: rgba(12, 74, 110, 0.75);
}

.split h2 {
    margin: 0.35rem 0 0.75rem;
    color: var(--brand);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

/* Departments carousel */
.section--dept {
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.section-head--split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: left;
    max-width: none;
    margin: 0 0 2rem;
}

.section-head--split .sub {
    max-width: 52ch;
}

.dept-arrows {
    display: flex;
    gap: 0.5rem;
}

.circle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(12, 74, 110, 0.2);
    background: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: var(--brand);
    transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast), border-color var(--t-fast);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.circle-btn:hover {
    transform: scale(1.06);
    border-color: var(--accent);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
}

.dept-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.dept-track::-webkit-scrollbar {
    height: 6px;
}

.dept-track::-webkit-scrollbar-thumb {
    background: rgba(12, 74, 110, 0.2);
    border-radius: 999px;
}

.dept-card {
    position: relative;
    flex: 0 0 min(380px, 88vw);
    scroll-snap-align: start;
    background: var(--surface);
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dept-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.dept-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.dept-card:hover .dept-card__img img {
    transform: scale(1.06);
}

.dept-card__tag {
    margin: 1rem 1.25rem 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand2);
}

.dept-card h3 {
    margin: 0.35rem 1.25rem 0.5rem;
    font-size: 1.2rem;
    color: var(--brand);
    padding-right: 3rem;
}

.dept-card p {
    margin: 0 1.25rem 1.5rem;
    font-size: 0.94rem;
    color: #475569;
    line-height: 1.65;
}

.dept-card__go {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    text-decoration: none;
    font-weight: 800;
    color: var(--brand2);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform var(--t-fast), background var(--t-fast);
}

.dept-card__go:hover {
    transform: scale(1.08);
    background: var(--accent-soft);
}

/* Services — split luxury cards */
.service-lux-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-lux {
    display: grid;
    grid-template-columns: minmax(200px, 0.42fr) 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out);
}

.service-lux:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-lux__media {
    position: relative;
    min-height: 200px;
}

.service-lux__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s var(--ease-out);
}

.service-lux:hover .service-lux__media img {
    transform: scale(1.05);
}

.service-lux__body {
    position: relative;
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-lux__tag {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand2);
}

.service-lux h3 {
    margin: 0.4rem 0 0.5rem;
    font-size: 1.28rem;
    color: var(--brand);
}

.service-lux p {
    margin: 0;
    color: #475569;
    font-size: 0.96rem;
    max-width: 52ch;
}

.service-lux__arrow {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 28px rgba(12, 74, 110, 0.25);
    transition: transform var(--t-fast) var(--ease-out);
}

.service-lux__arrow:hover {
    transform: scale(1.1);
}

.split--lux .split__media--tilt {
    position: relative;
}

.split--lux .split__media--tilt::before {
    content: '';
    position: absolute;
    inset: -8%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), transparent 55%);
    border-radius: 30% 70% 65% 35% / 40% 45% 55% 60%;
    z-index: 0;
    opacity: 0.9;
}

.split--lux .split__media--tilt img {
    position: relative;
    z-index: 1;
    border-radius: calc(var(--radius) + 4px);
}

/* Digital — tabbed */
.digital-tabs {
    position: relative;
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    background: linear-gradient(165deg, #073a59 0%, #0c4a6e 45%, #0a5f72 100%);
    color: #fff;
    overflow: hidden;
}

.digital-tabs__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
}

.digital-tabs__wrap {
    position: relative;
    z-index: 1;
}

.digital-tabs__lead {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 52rem;
    margin: 0 auto 1.75rem;
    line-height: 1.65;
}

.dt-tablist {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 0;
}

.dt-tab {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-family: inherit;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.85rem 1.15rem;
    border-radius: 14px 14px 0 0;
    cursor: pointer;
    transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.dt-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.dt-tab.is-active {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.dt-panels {
    background: #fff;
    border-radius: 0 0 calc(var(--radius) + 8px) calc(var(--radius) + 8px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.dt-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    animation: dtFade 0.45s var(--ease-out);
}

.dt-panel.is-active {
    display: grid;
}

.dt-panel[hidden] {
    display: none !important;
}

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

.dt-panel__media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.dt-panel__media img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.dt-panel__text h3 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    color: var(--brand);
}

.dt-panel__text p {
    margin: 0 0 0.85rem;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
}

.card--lux {
    transition: transform var(--t-med) var(--ease-out), box-shadow var(--t-med) var(--ease-out), border-color var(--t-fast);
    border-color: transparent;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.card--lux:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(14, 165, 233, 0.2);
}

.quote--lux {
    position: relative;
    padding-top: 2rem;
    background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
    border: none;
}

.quote--lux::before {
    content: '“';
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(12, 74, 110, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .hero__blobs span,
    .hero__bg::after,
    .dt-panel {
        animation: none !important;
        transition: none !important;
    }
}

/* Quotes */
.quote {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    margin: 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.quote blockquote {
    margin: 0 0 0.75rem;
    font-weight: 600;
    color: #334155;
}

.quote figcaption {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 100%);
    color: #fff;
    padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.cta-band__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 60ch;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.alert {
    border-radius: 14px;
    padding: 0.9rem 1rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.alert--ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
}

.wa-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: #fff;
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.25);
    margin: 0 0 1.25rem;
}

.wa-card strong {
    display: block;
    font-size: 1.02rem;
}

.wa-card .muted {
    display: block;
    opacity: 0.95;
    font-weight: 600;
    font-size: 0.92rem;
}

.wa-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.contact-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.contact-list__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(14, 165, 233, 0.12);
    border-radius: 12px;
    flex: 0 0 auto;
}

.contact-list p {
    margin: 0.15rem 0 0;
    color: #334155;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.form-card h3 {
    margin: 0 0 1rem;
    color: var(--brand);
    font-size: 1.35rem;
}

.form {
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
}

.field input,
.field textarea {
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 0.85rem 0.9rem;
    font: inherit;
    background: #fafbfc;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
    background: #fff;
}

/* Footer */
.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.78);
    padding: 3rem 0 0;
}

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

.footer-logo {
    display: inline-block;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.75rem;
}

.footer-col h4 {
    margin: 0 0 0.85rem;
    color: #bae6fd;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom__inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

/* Cookie */
.cookie {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    padding: 0.9rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie.is-visible {
    display: block;
}

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

.cookie p {
    margin: 0;
    max-width: 80ch;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
}

/* FAB */
.fab-wa {
    position: fixed;
    right: 18px;
    bottom: 92px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    z-index: 60;
    text-decoration: none;
}

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

/* Sticky mobile */
.sticky-mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: none;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
}

.sticky-mobile__btn {
    display: grid;
    place-items: center;
    border-radius: 14px;
    padding: 0.75rem;
    font-weight: 900;
    text-decoration: none;
    background: rgba(15, 23, 42, 0.06);
    color: #0f172a;
}

.sticky-mobile__btn--wa {
    background: rgba(37, 211, 102, 0.14);
    color: #15803d;
}

.sticky-mobile__btn--primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.15;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .burger {
        display: inline-block;
    }

    .header-actions__book {
        display: none;
    }

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

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

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

    .service-lux__media {
        min-height: 220px;
        max-height: 260px;
    }

    .dt-panel.is-active {
        grid-template-columns: 1fr;
    }

    .dt-tablist {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
        -webkit-overflow-scrolling: touch;
    }

    .section-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

@media (max-width: 720px) {
    .topbar__inner {
        justify-content: center;
        text-align: center;
    }

    .section-head--row {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .sticky-mobile {
        display: grid;
    }

    body {
        padding-bottom: 76px;
    }

    .fab-wa {
        bottom: 96px;
    }
}
