:root {
    color-scheme: dark;
    --bg: #080808;
    --bg-soft: #101010;
    --panel: #141414;
    --panel-strong: #191919;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f6f2ee;
    --muted: #b7b1aa;
    --subtle: #817b75;
    --orange: #ff6a00;
    --orange-2: #ff9a3d;
    --cyan: #57d7e6;
    --green: #90d67b;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --max: 1180px;
    --display-font: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --accent-font: "Instrument Serif", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

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

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    background: var(--orange);
    color: #111;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(8, 8, 8, 0.74);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.nav {
    width: min(var(--max), calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--orange), #191919 66%);
    color: white;
    font-weight: 900;
    box-shadow: 0 0 24px rgba(255, 106, 0, 0.25);
}

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

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

.brand-copy small {
    color: var(--muted);
    font-size: 12px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
}

.nav-links a {
    color: var(--muted);
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 800;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #120a04;
    font-size: 14px;
}

.nav-cta:hover,
.btn:hover {
    transform: translateY(-1px);
}

.icon-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #120a04;
    box-shadow: 0 14px 34px rgba(255, 106, 0, 0.22);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

.btn-ghost {
    border-color: var(--line);
    background: transparent;
    color: var(--text);
}

.hero {
    min-height: 82svh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #050505;
}

.hero-media,
.hero-media img,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.3) 62%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(0deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.18) 42%, rgba(8, 8, 8, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 132px 0 108px;
    animation: hero-rise 700ms ease both;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--orange-2);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

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

h1 {
    max-width: 780px;
    margin-bottom: 22px;
    font-family: var(--display-font);
    font-size: 64px;
    line-height: 0.98;
    letter-spacing: 0;
}

h2,
h3,
.brand-copy strong,
.btn,
.nav-cta {
    font-family: var(--display-font);
}

.text-accent {
    color: var(--orange-2);
    font-family: var(--accent-font);
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 0 18px rgba(255, 106, 0, 0.16);
}

h1 .text-accent,
.section-intro h2 .text-accent,
.split-section h2 .text-accent,
.contact-section h2 .text-accent {
    position: relative;
    white-space: normal;
}

h1 .text-accent::after,
.section-intro h2 .text-accent::after,
.split-section h2 .text-accent::after,
.contact-section h2 .text-accent::after {
    content: "";
    position: absolute;
    left: 0.06em;
    right: 0.08em;
    bottom: 0.04em;
    height: 0.045em;
    background: rgba(255, 154, 61, 0.46);
    opacity: 0.34;
    pointer-events: none;
}

.service-card h3 .text-accent,
.occasion-card h3 .text-accent,
.portfolio-copy h3 .text-accent,
.process-grid h3 .text-accent,
.segment-list h3 .text-accent,
.use-case-grid h3 .text-accent {
    font-family: inherit;
    font-style: normal;
    font-weight: 800;
    text-shadow: none;
}

.hero-text {
    max-width: 660px;
    color: #e8e0d7;
    font-size: 20px;
    line-height: 1.5;
}

.hero-actions,
.contact-actions,
.section-action {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    width: min(var(--max), calc(100% - 32px));
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    background: rgba(10, 10, 10, 0.78);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-proof span {
    padding: 16px 18px;
    color: var(--muted);
    font-weight: 800;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
}

.hero-proof span::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 2px;
    margin-right: 10px;
    background: var(--orange-2);
    box-shadow: 0 0 14px rgba(255, 154, 61, 0.55);
    vertical-align: middle;
}

.hero-proof span:last-child {
    border-right: 0;
}

.section {
    padding: 92px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section > * {
    width: min(var(--max), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 14px 48px;
    align-items: start;
    margin-bottom: 34px;
}

.section-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.section-intro h2 {
    grid-column: 1;
}

.section-intro p:last-child {
    grid-column: 2;
    margin-bottom: 0;
}

.section-intro h2,
.split-section h2,
.contact-section h2 {
    margin-bottom: 0;
    font-family: var(--display-font);
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-intro p:last-child,
.split-section p,
.contact-section p {
    color: var(--muted);
    font-size: 17px;
}

.positioning {
    background:
        linear-gradient(135deg, rgba(87, 215, 230, 0.05), transparent 32%),
        linear-gradient(180deg, #080808, #101010);
}

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

.metrics div,
.service-card,
.occasion-card,
.portfolio-item,
.process-grid article,
.segment-list article,
.use-case-grid article,
.faq-list details,
.contact-form,
.deliverables div {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.metrics div,
.service-card,
.occasion-card,
.portfolio-item,
.process-grid article,
.segment-list article,
.use-case-grid article,
.city-link {
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.metrics div::before,
.service-card::before,
.occasion-card::before,
.portfolio-item::before,
.process-grid article::before,
.segment-list article::before,
.use-case-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(255, 154, 61, 0.36);
    opacity: 0;
    transform: translateX(-30%);
    transition: opacity 180ms ease, transform 220ms ease;
    pointer-events: none;
}

.metrics div:hover,
.service-card:hover,
.occasion-card:hover,
.portfolio-item:hover,
.process-grid article:hover,
.segment-list article:hover,
.use-case-grid article:hover,
.city-link:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 154, 61, 0.38);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.metrics div:hover::before,
.service-card:hover::before,
.occasion-card:hover::before,
.portfolio-item:hover::before,
.process-grid article:hover::before,
.segment-list article:hover::before,
.use-case-grid article:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.metrics div {
    padding: 22px;
}

.metrics strong {
    display: block;
    color: var(--orange-2);
    font-size: 34px;
    line-height: 1;
}

.metrics span {
    display: block;
    color: var(--muted);
    margin-top: 10px;
}

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

.service-card {
    min-height: 250px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-card > svg,
.occasion-card > svg,
.segment-list svg,
.deliverables svg,
.use-case-grid svg {
    color: var(--orange-2);
}

.service-card h3,
.occasion-card h3,
.portfolio-copy h3,
.process-grid h3,
.segment-list h3,
.use-case-grid h3 {
    margin-bottom: 4px;
    font-family: var(--display-font);
    font-size: 21px;
    line-height: 1.18;
}

.service-card p,
.occasion-card p,
.portfolio-copy p,
.process-grid p,
.segment-list p {
    color: var(--muted);
}

.service-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 800;
}

.split-section {
    background: #0b0b0b;
}

.occasion-section {
    background: linear-gradient(180deg, #080808, #0f0f0f);
}

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

.occasion-card {
    min-height: 210px;
    padding: 24px;
}

.occasion-card > svg {
    margin-bottom: 18px;
}

.split-section > .section-intro {
    display: none;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
    align-items: start;
}

.split-section > * {
    width: auto;
}

.split-section > div:first-child {
    margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.split-section > div:last-child {
    margin-right: max(16px, calc((100vw - var(--max)) / 2));
}

.segment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.segment-list article {
    padding: 22px;
}

.segment-list.compact article {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.portfolio-section {
    background: #0e0e0e;
}

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

.portfolio-item {
    overflow: hidden;
}

.video-shell {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    background: #050505;
    color: var(--text);
    overflow: hidden;
    cursor: pointer;
}

.video-shell img,
.video-shell iframe {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
}

.video-shell-pending img {
    filter: saturate(0.72) brightness(0.58);
}

.play-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #120a04;
    box-shadow: var(--shadow);
}

.portfolio-copy {
    padding: 22px;
}

.portfolio-copy span {
    display: block;
    margin-bottom: 10px;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 14px;
    align-items: start;
    margin-bottom: 24px;
}

.filter-tab {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 800;
}

.filter-tab.is-active {
    color: #120a04;
    border-color: transparent;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
}

.portfolio-search {
    position: relative;
    min-height: 44px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
}

.portfolio-search span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.portfolio-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
}

.portfolio-tags,
.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-tags {
    margin-top: 16px;
}

.portfolio-tags span,
.keyword-cloud span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 800;
}

.portfolio-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 900;
}

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

.city-link {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    font-weight: 800;
}

.city-link:hover {
    border-color: rgba(255, 154, 61, 0.5);
}

.process-grid,
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-grid article,
.use-case-grid article {
    padding: 22px;
}

.process-grid span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--green);
    font-weight: 900;
}

.faq-section {
    background: #090909;
}

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

.faq-list details {
    padding: 0 20px;
}

.faq-list summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    color: var(--muted);
    margin-bottom: 20px;
}

.contact-section {
    background: linear-gradient(180deg, #0f0f0f, #080808);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 20px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label.full,
.contact-form button.full {
    grid-column: 1 / -1;
}

.contact-form span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.28);
    color: var(--text);
    padding: 12px 12px;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--orange-2);
}

.deliverables {
    display: grid;
    gap: 10px;
}

.deliverables div {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}

.portfolio-detail-layout,
.project-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.portfolio-player,
.portfolio-player iframe,
.portfolio-player-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
}

.portfolio-player {
    border: 1px solid var(--line);
    background: #050505;
    box-shadow: var(--shadow);
}

.portfolio-player iframe {
    display: block;
    border: 0;
}

.portfolio-player-placeholder {
    position: relative;
    display: grid;
    place-items: center;
}

.portfolio-player-placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.44) saturate(0.75);
}

.portfolio-player-placeholder div {
    position: relative;
    z-index: 1;
    width: min(420px, calc(100% - 32px));
    text-align: center;
}

.portfolio-player-placeholder h2 {
    font-size: 26px;
    line-height: 1.12;
}

.portfolio-player-placeholder p {
    color: var(--muted);
}

.portfolio-facts {
    display: grid;
    gap: 10px;
}

.portfolio-facts div,
.project-content-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.portfolio-facts div {
    padding: 16px;
}

.portfolio-facts span {
    display: block;
    color: var(--subtle);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.portfolio-facts strong {
    display: block;
    margin-top: 5px;
    color: var(--text);
}

.project-content-grid article {
    padding: 24px;
}

.project-content-grid article p {
    color: var(--muted);
}

.chapter-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.chapter-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--muted);
}

.chapter-list span {
    color: var(--orange-2);
    font-weight: 900;
}

.city-context {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
}

.city-context > * {
    width: auto;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-tags span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    padding: 10px 12px;
    font-weight: 800;
}

.site-footer {
    background: #050505;
}

.footer-grid {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0 38px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
    color: var(--muted);
}

.footer-grid h2 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-grid a:hover {
    color: var(--text);
}

.footer-bottom {
    width: min(var(--max), calc(100% - 32px));
    min-height: 58px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding: 18px 0;
    font-size: 14px;
}

.whatsapp-widget {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 90;
    display: grid;
    justify-items: end;
    gap: 12px;
    pointer-events: none;
}

.whatsapp-float,
.whatsapp-panel {
    pointer-events: auto;
}

.whatsapp-float {
    position: relative;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background:
        linear-gradient(135deg, rgba(255, 154, 61, 0.26), transparent 46%),
        #111;
    color: var(--text);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), 0 0 28px rgba(255, 106, 0, 0.2);
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.16;
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
    width: 25px;
    height: 25px;
    color: #f7fff9;
}

.whatsapp-float span {
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    max-width: 138px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(12, 12, 12, 0.92);
    color: var(--text);
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: var(--shadow);
}

.whatsapp-float:hover,
.whatsapp-widget.is-open .whatsapp-float {
    transform: translateY(-2px);
    border-color: rgba(255, 154, 61, 0.52);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 106, 0, 0.28);
}

.whatsapp-widget.is-open .whatsapp-float {
    display: none;
}

.whatsapp-panel {
    width: min(392px, calc(100vw - 32px));
    max-height: min(690px, calc(100svh - 104px));
    overflow: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 154, 61, 0.08), transparent 28%),
        rgba(10, 10, 10, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transform-origin: right bottom;
    transition: opacity 180ms ease, transform 180ms ease;
}

.whatsapp-panel[hidden] {
    display: none;
}

.whatsapp-widget.is-open .whatsapp-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.whatsapp-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 4px;
}

.whatsapp-panel-head span {
    display: block;
    color: var(--orange-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.whatsapp-panel-head strong {
    display: block;
    margin-top: 2px;
    font-family: var(--display-font);
    font-size: 21px;
    line-height: 1.12;
}

.whatsapp-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
}

.whatsapp-panel label {
    display: grid;
    gap: 7px;
}

.whatsapp-panel label > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.whatsapp-panel input,
.whatsapp-panel textarea,
.whatsapp-panel select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    padding: 11px 12px;
    outline: none;
}

.whatsapp-panel textarea {
    resize: vertical;
}

.whatsapp-panel input:focus,
.whatsapp-panel textarea:focus,
.whatsapp-panel select:focus {
    border-color: rgba(255, 154, 61, 0.72);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.whatsapp-submit {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #120a04;
    font-family: var(--display-font);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(255, 106, 0, 0.2);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(255, 106, 0, 0.26);
}

.hidden {
    display: none !important;
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-drift {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.035);
    }
}

@media (max-width: 1040px) {
    h1 {
        font-size: 48px;
    }

    .section-intro,
    .split-section,
    .contact-layout,
    .city-context,
    .portfolio-detail-layout,
    .project-content-grid,
    .portfolio-tools {
        grid-template-columns: 1fr;
    }

    .section-intro .eyebrow,
    .section-intro h2,
    .section-intro p:last-child {
        grid-column: 1;
    }

    .split-section > div:first-child,
    .split-section > div:last-child {
        width: min(var(--max), calc(100% - 32px));
        margin-left: auto;
        margin-right: auto;
    }

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

    .occasion-grid,
    .process-grid,
    .use-case-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .nav {
        height: 68px;
    }

    .icon-button {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(10, 10, 10, 0.96);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        display: block;
    }

    .hero-content {
        padding-top: 116px;
        padding-bottom: 24px;
    }

    h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-proof {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto 16px;
        grid-template-columns: 1fr;
    }

    .hero-proof span {
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-proof span:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 68px 0;
    }

    .section-intro h2,
    .split-section h2,
    .contact-section h2 {
        font-size: 32px;
    }

    .metrics,
    .occasion-grid,
    .portfolio-grid,
    .segment-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .brand-copy small {
        display: none;
    }

    .hero-actions,
    .contact-actions,
    .section-action {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    h1 {
        font-size: 34px;
    }

    .service-grid,
    .city-grid,
    .occasion-grid,
    .process-grid,
    .use-case-grid,
    .footer-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form label.full,
    .contact-form button.full {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-widget {
        right: 12px;
        bottom: 12px;
        left: 12px;
        align-items: end;
    }

    .whatsapp-panel {
        width: 100%;
        max-height: calc(100svh - 96px);
    }

    .whatsapp-float span {
        display: none;
    }
}
