﻿:root {
    --navy: #1A0D09;
    --navy-2: #3A1A12;
    --royal-blue: #8A3F1D;
    --royal-blue-soft: #B86F35;
    --gold: #D89D35;
    --soft-gold: #FFD58A;
    --ivory: #FFF4E4;
    --muted: #E5CDB3;
    --glass: rgba(255, 255, 255, 0.075);
    --glass-soft: rgba(255, 255, 255, 0.035);
    --line-gold: rgba(212, 175, 55, 0.35);
    --line-light: rgba(248, 243, 231, 0.16);
    --radius: 8px;
    --page-pad: clamp(14px, 3vh, 34px);
    --app-height: 100dvh;
    --mouse-x: 0px;
    --mouse-y: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --latin-font: "Manrope", system-ui, sans-serif;
    --display-font: "Cormorant Garamond", "Manrope", serif;
    --local-font: "Manrope", system-ui, sans-serif;
}

@font-face {
    font-family: "B Nazanin";
    src:
        local("B Nazanin Bold"),
        local("B Nazanin"),
        local("BNazanin Bold"),
        local("BNazanin");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100svh;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
    color: var(--ivory);
    background: var(--navy);
    font-family: var(--latin-font);
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

button {
    font: inherit;
}

svg {
    display: block;
}

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

h1,
h2 {
    font-family: var(--display-font);
}

[data-i18n],
.language-toggle,
.language-menu button {
    font-family: var(--local-font);
}

.mini-page {
    position: relative;
    min-height: 100svh;
    height: var(--app-height, 100dvh);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: var(--page-pad);
    isolation: isolate;
    perspective: 1400px;
    background:
        radial-gradient(ellipse at 15% 24%, rgba(138, 63, 29, 0.82), transparent 32%),
        radial-gradient(ellipse at 65% 10%, rgba(184, 111, 53, 0.42), transparent 34%),
        radial-gradient(ellipse at 30% 74%, rgba(212, 175, 55, 0.2), transparent 30%),
        linear-gradient(135deg, #170B07 0%, var(--navy) 42%, #4A1F12 100%);
}

.mini-page::before,
.mini-page::after,
.light-wash,
.ornament {
    position: absolute;
    pointer-events: none;
}

.mini-page::before,
.mini-page::after {
    content: "";
    inset: 0;
    z-index: -3;
}

.mini-page::before {
    opacity: 0.34;
    background:
        linear-gradient(90deg, transparent 0 49.7%, rgba(244, 215, 123, 0.22) 49.7% 50%, transparent 50% 100%),
        repeating-linear-gradient(135deg, rgba(248, 243, 231, 0.048) 0 1px, transparent 1px 27px);
}

.mini-page::after {
    inset: clamp(10px, 2.6vw, 38px);
    border-radius: var(--radius);
    border: 1px solid rgba(244, 215, 123, 0.16);
    box-shadow: inset 0 0 42px rgba(138, 63, 29, 0.18);
}

.light-wash {
    z-index: -2;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.75;
    transform: translate3d(var(--mouse-x), var(--mouse-y), 0);
    animation: ambientFloat 8s ease-in-out infinite alternate;
}

.light-wash-brand {
    width: min(34vw, 430px);
    height: min(28vw, 330px);
    left: max(-120px, -5vw);
    top: 18%;
    background: radial-gradient(circle, rgba(244, 215, 123, 0.42), rgba(212, 175, 55, 0.14) 45%, transparent 72%);
}

.light-wash-map {
    width: min(38vw, 460px);
    height: min(32vw, 360px);
    right: max(-140px, -6vw);
    bottom: 8%;
    background: radial-gradient(circle, rgba(138, 63, 29, 0.64), rgba(212, 175, 55, 0.16) 52%, transparent 74%);
    animation-delay: -2.5s;
}

.ornament {
    width: clamp(90px, 14vw, 180px);
    height: clamp(90px, 14vw, 180px);
    z-index: -1;
    opacity: 0.22;
    background:
        linear-gradient(45deg, transparent 45%, rgba(244, 215, 123, 0.55) 46% 47%, transparent 48%),
        linear-gradient(-45deg, transparent 45%, rgba(244, 215, 123, 0.55) 46% 47%, transparent 48%),
        repeating-linear-gradient(90deg, transparent 0 14px, rgba(248, 243, 231, 0.18) 14px 15px, transparent 15px 30px);
    mask-image: radial-gradient(circle at center, black 0 58%, transparent 74%);
}

.ornament-top {
    top: 2vh;
    right: 3vw;
}

.ornament-bottom {
    left: 3vw;
    bottom: 2vh;
    transform: rotate(180deg);
}

.language-picker {
    position: absolute;
    top: clamp(12px, 2.4vh, 24px);
    right: clamp(12px, 2.6vw, 34px);
    z-index: 8;
    font-family: var(--local-font);
}

.language-toggle,
.language-menu button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(244, 215, 123, 0.34);
    border-radius: 999px;
    color: var(--ivory);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
        rgba(50, 24, 14, 0.76);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 18px rgba(212, 175, 55, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    cursor: pointer;
}

.language-toggle {
    min-height: 58px;
    padding: 8px 18px 8px 10px;
    font-size: clamp(0.8rem, 1vw, 0.96rem);
    font-weight: 800;
    background:
        linear-gradient(145deg, rgba(255, 213, 138, 0.32), rgba(216, 157, 53, 0.13) 48%, rgba(138, 63, 29, 0.32)),
        rgba(38, 18, 11, 0.88);
    border-color: rgba(255, 213, 138, 0.68);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(216, 157, 53, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -14px 22px rgba(26, 13, 9, 0.32);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-label {
    display: block;
    color: var(--soft-gold);
    font-size: 0.58em;
    font-weight: 800;
    line-height: 1;
}

.language-copy {
    display: grid;
    gap: 2px;
}

.language-current {
    display: block;
    color: var(--ivory);
    line-height: 1.05;
}

.language-toggle:hover,
.language-toggle:focus-visible {
    border-color: rgba(244, 215, 123, 0.62);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.34),
        0 0 24px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    outline: none;
}

.language-toggle img,
.language-menu img {
    width: 36px;
    height: 24px;
    flex: 0 0 auto;
    border-radius: 5px;
    object-fit: cover;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.24),
        0 8px 16px rgba(0, 0, 0, 0.28);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 194px;
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(244, 215, 123, 0.25);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(38, 18, 11, 0.94);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.42),
        0 0 28px rgba(138, 63, 29, 0.28);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.language-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.language-menu button {
    width: 100%;
    min-height: 42px;
    justify-content: flex-start;
    border-color: rgba(248, 243, 231, 0.1);
    padding: 6px 9px;
    font-size: 0.88rem;
    font-weight: 750;
    text-align: start;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language-menu img {
    width: 32px;
    height: 22px;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[aria-current="true"] {
    border-color: rgba(244, 215, 123, 0.46);
    background:
        linear-gradient(145deg, rgba(244, 215, 123, 0.2), rgba(212, 175, 55, 0.06)),
        rgba(138, 63, 29, 0.24);
    outline: none;
}

.business-card {
    position: relative;
    width: min(1120px, 100%);
    height: min(680px, calc(var(--app-height, 100dvh) - var(--page-pad) - var(--page-pad)));
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.82fr);
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
        "intro map"
        "contact map";
    gap: clamp(16px, 2vw, 28px);
    padding: clamp(18px, 2.6vw, 38px);
    overflow: visible;
    border-radius: var(--radius);
    transform-style: preserve-3d;
}

.business-card::before,
.business-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: var(--radius);
}

.business-card::before {
    inset: 0;
    z-index: -1;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
        rgba(38, 18, 11, 0.66);
    box-shadow:
        0 38px 95px rgba(0, 0, 0, 0.46),
        0 0 70px rgba(138, 63, 29, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.business-card::after {
    inset: 0;
    border: 1px solid rgba(244, 215, 123, 0.18);
    background:
        linear-gradient(var(--gold), var(--gold)) left top / 72px 1px no-repeat,
        linear-gradient(var(--gold), var(--gold)) left top / 1px 72px no-repeat,
        linear-gradient(var(--gold), var(--gold)) right top / 72px 1px no-repeat,
        linear-gradient(var(--gold), var(--gold)) right top / 1px 72px no-repeat,
        linear-gradient(var(--gold), var(--gold)) left bottom / 72px 1px no-repeat,
        linear-gradient(var(--gold), var(--gold)) left bottom / 1px 72px no-repeat,
        linear-gradient(var(--gold), var(--gold)) right bottom / 72px 1px no-repeat,
        linear-gradient(var(--gold), var(--gold)) right bottom / 1px 72px no-repeat;
    opacity: 0.58;
    transform: translateZ(-24px) scale(1.018) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.card-3d {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(50, 24, 14, 0.68);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    transform-style: preserve-3d;
}

.intro-panel {
    position: relative;
    grid-area: intro;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
    padding: clamp(18px, 2.4vw, 34px);
    isolation: isolate;
    transition: box-shadow 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.intro-panel::before,
.intro-panel::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: inherit;
}

.intro-panel::before {
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 18%, rgba(244, 215, 123, 0.3), transparent 28%),
        radial-gradient(circle at 78% 78%, rgba(138, 63, 29, 0.34), transparent 34%);
    transform: translate3d(calc(var(--mouse-x) * 0.35), calc(var(--mouse-y) * 0.35), 0) scale(1.5);
}

.intro-panel::after {
    inset: 12px;
    border: 1px solid rgba(244, 215, 123, 0.12);
    transform: translateZ(-16px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.intro-panel:hover {
    border-color: rgba(244, 215, 123, 0.5);
    box-shadow:
        0 36px 92px rgba(0, 0, 0, 0.48),
        0 0 58px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.intro-panel > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--soft-gold);
    font-size: clamp(0.64rem, 0.95vw, 0.78rem);
    font-weight: 800;
    line-height: 1.1;
}

h1 {
    margin-top: clamp(6px, 1vh, 11px);
    color: var(--ivory);
    font-size: clamp(1.55rem, 4vw, 3.15rem);
    font-weight: 800;
    line-height: 0.95;
}

h1 span {
    display: inline-block;
    color: var(--ivory);
    text-shadow:
        0 1px 0 rgba(244, 215, 123, 0.8),
        0 7px 24px rgba(212, 175, 55, 0.28),
        0 0 34px rgba(244, 215, 123, 0.22);
    animation: logoGlow 4s ease-in-out infinite;
}

h1::after {
    content: "";
    width: min(90px, 20vw);
    height: 3px;
    display: block;
    margin-top: clamp(9px, 1.3vh, 15px);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--soft-gold), var(--gold), transparent);
    box-shadow: 0 0 22px rgba(212, 175, 55, 0.38);
}

h2 {
    max-width: 12ch;
    margin-top: clamp(13px, 1.9vh, 22px);
    color: var(--ivory);
    font-size: clamp(1.55rem, 4.35vw, 4rem);
    font-weight: 800;
    line-height: 1.02;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.copy-stack {
    display: grid;
    gap: clamp(8px, 1.2vh, 13px);
    width: min(640px, 100%);
    margin-top: clamp(11px, 1.8vh, 22px);
}

.copy-stack p {
    color: var(--muted);
    font-size: clamp(0.8rem, 1.13vw, 1rem);
    line-height: 1.55;
}

html[dir="rtl"] .intro-panel,
html[dir="rtl"] .map-copy {
    text-align: right;
}

html[dir="rtl"] .contact-meta {
    text-align: right;
}

html[dir="rtl"] .contact-phone {
    direction: ltr;
}

html[lang="fa"] [data-i18n],
html[lang="fa"] .language-toggle,
html[lang="fa"] .language-menu button {
    font-weight: 700;
}

html[lang="fa"] .language-toggle {
    font-size: clamp(0.86rem, 1.08vw, 1.04rem);
}

html[lang="fa"] .language-menu button {
    font-size: 0.96rem;
}

html[lang="fa"] .eyebrow {
    font-size: clamp(0.7rem, 1.03vw, 0.86rem);
}

html[lang="fa"] h2 {
    max-width: 14ch;
    font-size: clamp(1.7rem, 4.58vw, 4.18rem);
    line-height: 1.08;
}

html[lang="fa"] .copy-stack p {
    font-size: clamp(0.88rem, 1.22vw, 1.07rem);
    line-height: 1.62;
}

html[lang="fa"] .map-copy h3 {
    font-size: clamp(1.08rem, 1.84vw, 1.45rem);
}

html[lang="fa"] .map-copy p:last-child {
    font-size: clamp(0.8rem, 1.03vw, 0.98rem);
}

html[lang="fa"] .map-link {
    font-size: clamp(0.75rem, 1.02vw, 0.9rem);
}

html[lang="fa"] .contact-meta h3 {
    font-size: clamp(0.82rem, 1.02vw, 0.96rem);
}

html[lang="fa"] .icon-button span {
    font-size: clamp(0.68rem, 0.97vw, 0.82rem);
}

.map-card {
    position: relative;
    grid-area: map;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(12px, 1.7vh, 18px);
    overflow: hidden;
    border-radius: var(--radius);
    padding: clamp(14px, 1.8vw, 22px);
    transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.map-card::before,
.map-card::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: inherit;
}

.map-card::before {
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(244, 215, 123, 0.25), transparent 34%),
        radial-gradient(circle at 24% 82%, rgba(138, 63, 29, 0.5), transparent 36%);
    transform: translate3d(calc(var(--mouse-x) * -0.25), calc(var(--mouse-y) * -0.25), 0) scale(1.42);
}

.map-card::after {
    inset: 10px;
    border: 1px solid rgba(244, 215, 123, 0.13);
    transform: translateZ(-18px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.map-card:hover {
    border-color: rgba(244, 215, 123, 0.56);
    box-shadow:
        0 42px 96px rgba(0, 0, 0, 0.5),
        0 0 56px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.map-card > * {
    position: relative;
    z-index: 1;
}

.map-copy {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.map-copy h3 {
    margin-top: 5px;
    color: var(--ivory);
    font-size: clamp(1rem, 1.7vw, 1.35rem);
    line-height: 1;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.map-copy p:last-child {
    margin-top: 5px;
    color: var(--muted);
    font-size: clamp(0.74rem, 0.95vw, 0.9rem);
    line-height: 1.2;
}

.map-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(244, 215, 123, 0.52);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(244, 215, 123, 0.18), rgba(212, 175, 55, 0.08)),
        rgba(138, 63, 29, 0.22);
    color: var(--soft-gold);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    padding: 8px 13px;
    font-size: clamp(0.7rem, 0.95vw, 0.84rem);
    font-weight: 800;
    line-height: 1.1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.map-frame {
    position: relative;
    min-height: 170px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(248, 243, 231, 0.18);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, rgba(248, 243, 231, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(248, 243, 231, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 36% 32%, rgba(244, 215, 123, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(138, 63, 29, 0.74), rgba(38, 18, 11, 0.94));
    background-size: 38px 38px, 38px 38px, auto, auto;
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.11);
    transform: translate3d(calc(var(--mouse-x) * 0.06), calc(var(--mouse-y) * 0.04), 0);
}

.map-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.12) 42%, transparent 58%);
    transform: translateX(-120%);
    animation: mapSweep 5.5s ease-in-out infinite;
}

.map-frame strong {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: rgba(248, 243, 231, 0.65);
    font-size: clamp(0.64rem, 0.85vw, 0.76rem);
}

.map-road {
    position: absolute;
    height: 11px;
    border-radius: 999px;
    background: rgba(248, 243, 231, 0.16);
    box-shadow: 0 0 18px rgba(138, 63, 29, 0.16);
}

.map-road-one {
    width: 74%;
    left: 0;
    top: 27%;
    transform: rotate(19deg);
}

.map-road-two {
    width: 68%;
    right: 0;
    top: 58%;
    transform: rotate(-24deg);
}

.map-road-three {
    width: 40%;
    left: 13%;
    bottom: 18%;
    transform: rotate(36deg);
    background: rgba(244, 215, 123, 0.22);
}

.map-pin {
    position: relative;
    width: clamp(54px, 7vw, 72px);
    height: clamp(54px, 7vw, 72px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, var(--soft-gold), var(--gold));
    color: var(--navy);
    box-shadow:
        0 20px 36px rgba(0, 0, 0, 0.36),
        0 0 36px rgba(212, 175, 55, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateZ(22px);
}

.map-pin::before {
    content: "";
    position: absolute;
    inset: -9px;
    border: 1px solid rgba(244, 215, 123, 0.46);
    border-radius: 50%;
}

.map-pin svg {
    width: 44%;
    fill: currentColor;
}

.contact-panel {
    position: relative;
    grid-area: contact;
    min-height: 0;
    display: grid;
    gap: clamp(10px, 1.55vh, 15px);
    transform-style: preserve-3d;
}

.contact-panel::before {
    content: "";
    position: absolute;
    inset: auto 8% 0 8%;
    height: 48px;
    border-radius: 999px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.26), transparent 68%);
    filter: blur(16px);
    pointer-events: none;
    transform: translateY(18px);
}

.contact-meta {
    display: grid;
    gap: 7px;
    align-items: start;
}

.contact-meta h3 {
    color: var(--soft-gold);
    font-size: clamp(0.76rem, 0.95vw, 0.88rem);
    line-height: 1;
}

.contact-phone,
.contact-phone a {
    color: var(--soft-gold);
    font-size: clamp(1.55rem, 3.45vw, 2.85rem);
    font-weight: 800;
    line-height: 0.95;
    overflow-wrap: anywhere;
}

.contact-phone a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 213, 138, 0.68);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(26, 13, 9, 0.9), rgba(80, 31, 15, 0.82)),
        rgba(38, 18, 11, 0.92);
    padding: clamp(8px, 1.2vh, 12px) clamp(12px, 1.8vw, 18px);
    letter-spacing: 0;
    text-shadow:
        0 0 4px rgba(255, 244, 228, 0.9),
        0 0 14px rgba(255, 213, 138, 0.72),
        0 0 32px rgba(216, 157, 53, 0.42);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.36),
        0 0 18px rgba(255, 213, 138, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        inset 0 0 24px rgba(216, 157, 53, 0.12);
    animation: phoneNeon 24s ease-in-out infinite;
}

.contact-actions {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(8px, 0.95vw, 12px);
    transform-style: preserve-3d;
}

.icon-button {
    position: relative;
    min-height: clamp(58px, 8.6vh, 74px);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    overflow: hidden;
    border: 1px solid rgba(244, 215, 123, 0.44);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 213, 138, 0.26), rgba(216, 157, 53, 0.1) 42%, rgba(138, 63, 29, 0.34)),
        rgba(50, 24, 14, 0.76);
    color: var(--ivory);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(212, 175, 55, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -10px 18px rgba(38, 18, 11, 0.26);
    transform: translateZ(0);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.icon-button svg {
    width: clamp(20px, 2.6vw, 27px);
    fill: var(--soft-gold);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.24));
}

.icon-button span {
    font-size: clamp(0.62rem, 0.9vw, 0.76rem);
    font-weight: 800;
    line-height: 1;
}

.shine-link::after {
    content: "";
    position: absolute;
    top: -60%;
    bottom: -60%;
    width: 42%;
    left: -55%;
    pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-18deg);
    animation: shineSweep 4.6s ease-in-out infinite;
}

.shine-link:nth-child(2)::after {
    animation-delay: 0.35s;
}

.shine-link:nth-child(3)::after {
    animation-delay: 0.7s;
}

.shine-link:nth-child(4)::after {
    animation-delay: 1.05s;
}

.icon-button:hover,
.icon-button:focus-visible,
.map-link:hover,
.map-link:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(244, 215, 123, 0.7);
    background:
        linear-gradient(145deg, rgba(255, 213, 138, 0.34), rgba(216, 157, 53, 0.14) 42%, rgba(138, 63, 29, 0.4)),
        rgba(50, 24, 14, 0.82);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.36),
        0 0 28px rgba(212, 175, 55, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    outline: none;
}

.icon-button:active,
.map-link:active {
    transform: scale(0.97);
}

@keyframes ambientFloat {
    from {
        transform: translate3d(calc(var(--mouse-x) - 6px), calc(var(--mouse-y) - 4px), 0) scale(1);
    }
    to {
        transform: translate3d(calc(var(--mouse-x) + 8px), calc(var(--mouse-y) + 6px), 0) scale(1.04);
    }
}

@keyframes logoGlow {
    0%,
    100% {
        text-shadow:
            0 1px 0 rgba(244, 215, 123, 0.78),
            0 7px 24px rgba(212, 175, 55, 0.24),
            0 0 30px rgba(244, 215, 123, 0.16);
    }
    50% {
        text-shadow:
            0 1px 0 rgba(244, 215, 123, 0.92),
            0 9px 28px rgba(212, 175, 55, 0.32),
            0 0 42px rgba(244, 215, 123, 0.24);
    }
}

@keyframes phoneNeon {
    0%,
    100% {
        color: var(--soft-gold);
        border-color: rgba(255, 213, 138, 0.72);
        text-shadow:
            0 0 4px rgba(255, 244, 228, 0.92),
            0 0 14px rgba(255, 213, 138, 0.72),
            0 0 34px rgba(216, 157, 53, 0.42);
        box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.36),
            0 0 18px rgba(255, 213, 138, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.13),
            inset 0 0 24px rgba(216, 157, 53, 0.12);
    }
    45% {
        color: #ffbfa3;
        border-color: rgba(255, 148, 108, 0.68);
        text-shadow:
            0 0 4px rgba(255, 244, 228, 0.88),
            0 0 15px rgba(255, 148, 108, 0.64),
            0 0 36px rgba(166, 58, 34, 0.44);
        box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.36),
            0 0 20px rgba(255, 148, 108, 0.26),
            inset 0 1px 0 rgba(255, 255, 255, 0.13),
            inset 0 0 26px rgba(166, 58, 34, 0.12);
    }
    72% {
        color: #caffb7;
        border-color: rgba(202, 255, 183, 0.54);
        text-shadow:
            0 0 4px rgba(255, 244, 228, 0.84),
            0 0 13px rgba(202, 255, 183, 0.48),
            0 0 30px rgba(111, 155, 75, 0.28);
        box-shadow:
            0 16px 38px rgba(0, 0, 0, 0.36),
            0 0 16px rgba(202, 255, 183, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.13),
            inset 0 0 22px rgba(111, 155, 75, 0.1);
    }
}

@keyframes shineSweep {
    0%,
    62% {
        transform: translateX(0) skewX(-18deg);
    }
    100% {
        transform: translateX(340%) skewX(-18deg);
    }
}

@keyframes mapSweep {
    0%,
    66% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@media (max-width: 820px) {
    :root {
        --page-pad: clamp(8px, 1.8svh, 14px);
    }

    .mini-page {
        align-items: stretch;
        justify-items: stretch;
        perspective: none;
    }

    .mini-page::after {
        inset: 8px;
    }

    .light-wash {
        filter: blur(28px);
        animation: none;
    }

    .ornament {
        opacity: 0.14;
    }

    .business-card {
        width: 100%;
        height: calc(var(--app-height, 100dvh) - var(--page-pad) - var(--page-pad));
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(104px, 1fr) auto;
        grid-template-areas:
            "intro"
            "map"
            "contact";
        gap: clamp(7px, 1.25svh, 11px);
        padding: clamp(8px, 1.8svh, 14px);
        overflow: hidden;
        transform: none;
    }

    .language-picker {
        top: clamp(8px, 1.4svh, 12px);
        right: clamp(8px, 2.2vw, 12px);
    }

    .language-toggle {
        min-height: 46px;
        gap: 7px;
        padding: 6px 12px 6px 8px;
        font-size: 0.75rem;
    }

    .language-toggle img,
    .language-menu img {
        width: 30px;
        height: 20px;
    }

    .language-menu {
        min-width: 158px;
        gap: 5px;
        padding: 6px;
    }

    .language-menu button {
        min-height: 36px;
        font-size: 0.76rem;
        padding: 5px 7px;
    }

    html[lang="fa"] .language-toggle {
        font-size: 0.81rem;
    }

    html[lang="fa"] .language-menu button {
        font-size: 0.82rem;
    }

    .business-card::after {
        inset: 0;
        background:
            linear-gradient(var(--gold), var(--gold)) left top / 48px 1px no-repeat,
            linear-gradient(var(--gold), var(--gold)) left top / 1px 48px no-repeat,
            linear-gradient(var(--gold), var(--gold)) right top / 48px 1px no-repeat,
            linear-gradient(var(--gold), var(--gold)) right top / 1px 48px no-repeat,
            linear-gradient(var(--gold), var(--gold)) left bottom / 48px 1px no-repeat,
            linear-gradient(var(--gold), var(--gold)) left bottom / 1px 48px no-repeat,
            linear-gradient(var(--gold), var(--gold)) right bottom / 48px 1px no-repeat,
            linear-gradient(var(--gold), var(--gold)) right bottom / 1px 48px no-repeat;
    }

    .intro-panel {
        justify-content: start;
        padding: clamp(10px, 1.8svh, 14px);
    }

    .intro-panel,
    .intro-panel:hover,
    .map-card,
    .map-card:hover {
        transform: none;
    }

    .intro-panel > *,
    .map-copy,
    .map-frame,
    .map-pin {
        transform: none;
    }

    .eyebrow {
        font-size: clamp(0.6rem, 2vw, 0.7rem);
    }

    html[lang="fa"] .eyebrow {
        font-size: clamp(0.66rem, 2.18vw, 0.76rem);
    }

    h1 {
        margin-top: clamp(5px, 0.7svh, 8px);
        font-size: clamp(1.24rem, 5.4vw, 1.72rem);
    }

    h1::after {
        width: 64px;
        margin-top: clamp(6px, 0.9svh, 9px);
    }

    h2 {
        max-width: 15ch;
        margin-top: clamp(8px, 1.1svh, 13px);
        font-size: clamp(1.26rem, 5.35vw, 1.96rem);
        line-height: 1.04;
    }

    html[lang="fa"] h2 {
        max-width: 16ch;
        font-size: clamp(1.36rem, 5.7vw, 2.08rem);
        line-height: 1.08;
    }

    .copy-stack {
        gap: clamp(5px, 0.8svh, 8px);
        margin-top: clamp(7px, 1.1svh, 11px);
    }

    .copy-stack p {
        font-size: clamp(0.69rem, 2.26vw, 0.84rem);
        line-height: 1.42;
    }

    html[lang="fa"] .copy-stack p {
        font-size: clamp(0.76rem, 2.48vw, 0.9rem);
        line-height: 1.48;
    }

    .map-card {
        gap: clamp(7px, 0.95svh, 10px);
        padding: clamp(8px, 1.35svh, 11px);
    }

    .map-copy {
        align-items: center;
    }

    .map-copy h3 {
        margin-top: 3px;
        font-size: clamp(0.88rem, 3vw, 1.04rem);
    }

    html[lang="fa"] .map-copy h3 {
        font-size: clamp(0.94rem, 3.22vw, 1.12rem);
    }

    .map-copy p:last-child {
        margin-top: 3px;
        font-size: clamp(0.64rem, 2.05vw, 0.76rem);
    }

    html[lang="fa"] .map-copy p:last-child {
        font-size: clamp(0.69rem, 2.2vw, 0.82rem);
    }

    .map-link {
        min-height: 33px;
        padding: 7px 10px;
        font-size: clamp(0.6rem, 1.95vw, 0.7rem);
    }

    html[lang="fa"] .map-link {
        font-size: clamp(0.64rem, 2.08vw, 0.75rem);
    }

    .map-frame {
        min-height: 84px;
        background-size: 30px 30px, 30px 30px, auto, auto;
    }

    .map-frame strong {
        right: 10px;
        bottom: 8px;
        font-size: clamp(0.56rem, 1.8vw, 0.64rem);
    }

    .map-pin {
        width: clamp(42px, 11.5vw, 54px);
        height: clamp(42px, 11.5vw, 54px);
    }

    .contact-panel {
        gap: clamp(7px, 1svh, 10px);
    }

    .contact-meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        align-items: end;
    }

    .contact-meta h3 {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }

    .contact-phone,
    .contact-phone a {
        font-size: clamp(1.28rem, 8.2vw, 2.05rem);
        line-height: 1;
    }

    .contact-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .icon-button {
        min-height: clamp(39px, 6.7svh, 52px);
        gap: 4px;
    }

    .icon-button svg {
        width: clamp(17px, 4.8vw, 22px);
    }

    .icon-button span {
        font-size: clamp(0.57rem, 1.8vw, 0.66rem);
    }

    html[lang="fa"] .icon-button span {
        font-size: clamp(0.61rem, 1.95vw, 0.72rem);
    }
}

@media (max-height: 700px) {
    :root {
        --page-pad: 8px;
    }

    .business-card {
        padding: clamp(8px, 1.7svh, 14px);
        gap: clamp(6px, 1.05svh, 9px);
    }

    .intro-panel {
        padding: clamp(9px, 1.6svh, 14px);
    }

    h1 {
        font-size: clamp(1.16rem, 4.7svh, 1.95rem);
    }

    h2 {
        margin-top: 7px;
        font-size: clamp(1.18rem, 4.15svh, 2.22rem);
    }

    .copy-stack {
        margin-top: 6px;
    }

    .copy-stack p {
        font-size: clamp(0.62rem, 1.85svh, 0.82rem);
        line-height: 1.32;
    }

    .map-frame {
        min-height: 72px;
    }

    .icon-button {
        min-height: clamp(44px, 6.6svh, 50px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .map-card,
    .map-card:hover,
    .intro-panel,
    .intro-panel:hover,
    .icon-button,
    .icon-button:hover,
    .map-link,
    .map-link:hover {
        transform: none !important;
    }
}

