/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

:root {
    --white: #ffffff;
    --milk: #f5f5f5;
    --graphite: #2b2b2b;
    --gold: #c8a96a;

    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --font-main: 'Montserrat', 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--milk);
    color: var(--graphite);
    margin: 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--milk);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b89555;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--milk);
}

/* Header animations */
@keyframes elegantFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 8px 40px rgba(200, 169, 106, 0.06);
}

.logo-block {
    animation: elegantFade 0.8s ease 0.1s both;
}

.nav-link {
    animation: elegantFade 0.6s ease both;
}

.nav-link:nth-child(1) { animation-delay: 0.2s; }
.nav-link:nth-child(2) { animation-delay: 0.3s; }
.nav-link:nth-child(3) { animation-delay: 0.4s; }
.nav-link:nth-child(4) { animation-delay: 0.5s; }

.header-right .phone {
    animation: elegantFade 0.6s ease 0.5s both;
}

.header-right .btn-gold {
    animation: elegantFade 0.6s ease 0.6s both;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo block */
.logo-block {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo {
    width: 70px;
    height: 70px;
    background-color: var(--gold);
    -webkit-mask: url(image/logo.svg) no-repeat center;
    mask: url(image/logo.svg) no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo-block:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-main);
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-main);
    color: var(--graphite);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 0;
    position: relative;
    transition: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 2px dashed var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--graphite);
}

/* Right side */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone {
    font-family: var(--font-main);
    color: var(--graphite);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.3s;
}

.phone:hover {
    color: var(--gold);
}

/* Button */
@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(200, 169, 106, 0.3);
    }
    50% {
        box-shadow: 0 0 15px 2px rgba(200, 169, 106, 0.25);
    }
}

.btn-gold {
    font-family: var(--font-accent);
    background: rgba(200, 169, 106, 0.1);
    color: var(--graphite);
    border: 2px solid var(--gold);
    border-radius: 0;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: btnGlow 2s ease-in-out infinite;
    transition: color 0.3s ease, background-color 0.3s ease;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-gold:hover {
    color: var(--white);
}

.btn-gold:hover::before {
    width: 100%;
}

/* Mobile */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--graphite);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 12px 0;
}

.mobile-menu .phone {
    display: block;
    padding: 12px 0;
}

.mobile-menu .btn-gold {
    display: inline-block;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .logo {
        width: 55px;
        height: 55px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .logo-block {
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .logo-text {
        display: none;
    }
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    background: url('image/hero23.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 70%, transparent 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 580px;
}

.hero-label {
    font-family: var(--font-main);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.15;
    margin: 0 0 20px 0;
}

/* Accent styles */
.hero-title .accent {
    color: var(--gold);
}

.hero-title .accent-underline {
    position: relative;
}

.hero-title .accent-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    border-bottom: 2px dashed var(--gold);
}

.hero-subtitle {
    font-family: var(--font-main);
    font-size: clamp(14px, 2vw, 16px);
    color: var(--graphite);
    line-height: 1.7;
    margin: 0 0 30px 0;
    opacity: 0.85;
}

.hero-subtitle .accent {
    color: var(--graphite);
    font-weight: 600;
}

.hero .btn-gold {
    animation: none;
}

/* Hero animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineReveal {
    from { width: 0; }
    to { width: 100%; }
}

.hero-label {
    animation: heroFadeIn 0.7s ease-out 0.2s both;
}

.hero-title {
    animation: heroFadeIn 0.8s ease-out 0.35s both;
}

.hero-title .accent-underline::after {
    animation: underlineReveal 0.6s ease-out 1s both;
}

.hero-subtitle {
    animation: heroFadeIn 0.8s ease-out 0.5s both;
}

.hero .btn-gold {
    animation: heroFadeIn 0.8s ease-out 0.65s both;
}

/* Hero features */
.hero-features {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 35px 0 0 0;
    animation: heroFadeIn 0.8s ease-out 0.85s both;
}

.hero-features li {
    font-family: var(--font-main);
    font-size: 13px;
    color: var(--graphite);
    opacity: 0.7;
}

.hero-features .feature-num {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    display: block;
    margin-bottom: 2px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: heroFadeIn 1s ease-out 1.2s both;
}

.scroll-text {
    font-family: var(--font-main);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--graphite);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gold);
    animation: scrollPulse 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(25px);
        opacity: 0;
    }
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero::before {
        width: 70%;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero::before {
        width: 100%;
        background: rgba(255,255,255,0.85);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title br,
    .hero-subtitle br {
        display: none;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-features .feature-num {
        font-size: 18px;
    }

    .hero-features li {
        font-size: 11px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ==================== */
/* About Section */
/* ==================== */
.about {
    min-height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

/* Вторая фотография — со смещением */
.about-image .image-secondary {
    width: 85%;
    margin-left: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-left: 2px dashed var(--gold);
    border-top: 2px dashed var(--gold);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-right: 2px dashed var(--gold);
    border-bottom: 2px dashed var(--gold);
}

.about-content {
    max-width: 500px;
}

.section-label {
    font-family: var(--font-main);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-accent);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    color: var(--graphite);
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.section-title .accent {
    color: var(--gold);
}

.about-text {
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--graphite);
    line-height: 1.8;
    margin: 0 0 30px 0;
    opacity: 0.85;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.about-feature-text {
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--graphite);
}

.about-feature-text strong {
    display: block;
    font-weight: 600;
    margin-bottom: 2px;
}

/* About responsive */
@media (max-width: 992px) {
    .about-inner {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about {
        min-height: auto;
        padding: 60px 0;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-image::before,
    .about-image::after {
        width: 60px;
        height: 60px;
    }

    .about-content {
        text-align: center;
        max-width: 100%;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }
}

.about-cta {
    margin-top: 30px;
    display: inline-block;
}


/* ==================== */
/* Services Section */
/* ==================== */
.services {
    min-height: 100vh;
    background: var(--milk);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-label {
    margin-bottom: 15px;
}

.services-header .section-title {
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 35px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-left: 2px dashed var(--gold);
    border-top: 2px dashed var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-right: 2px dashed var(--gold);
    border-bottom: 2px dashed var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border: 2px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.service-title {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    color: var(--graphite);
    margin: 0 0 12px;
}

.service-desc {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(43,43,43,0.8);
    margin: 0 0 20px;
}

.service-link {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* Services responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .services-header {
        margin-bottom: 40px;
    }
}


/* ==================== */
/* Doctors Section */
/* ==================== */
.doctors {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;

  /* gold background */
  background:
    radial-gradient(800px 400px at 10% 30%, rgba(255,255,255,0.35), transparent 60%),
    radial-gradient(700px 500px at 50% 70%, rgba(255,255,255,0.18), transparent 65%),
    linear-gradient(135deg, rgba(200,169,106,0.95), rgba(200,169,106,0.75));
}

.doctors .container {
  width: 100%;
}

.doctors-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 40px;
  align-items: center;
}

.doctors .section-label { color: rgba(43,43,43,0.85); }
.doctors .section-title { color: var(--graphite); }
.doctors .section-title .accent { color: var(--white); }

/* LEFT: Info block */
.doctors-info {
  max-width: 420px;
}

.doctor-card {
  margin-top: 28px;
  background: rgba(255,255,255,0.95);
  padding: 35px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.doctor-name {
  font-family: var(--font-accent);
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--graphite);
  line-height: 1.2;
}

.doctor-role {
  margin: 0 0 18px;
  font-family: var(--font-main);
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.doctor-text {
  margin: 0 0 20px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(43,43,43,0.85);
}

.doctor-meta {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doctor-meta li {
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--graphite);
  background: rgba(200,169,106,0.15);
  padding: 6px 12px;
  border: 1px dashed var(--gold);
}

.doctor-cta {
  animation: none;
  font-size: 14px;
  padding: 10px 24px;
}

/* CENTER: Photo */
.doctors-photo {
  position: relative;
  height: 80vh;
  min-height: 550px;
  max-height: 750px;
  padding: 25px;
}

.doctors-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  border-left: 2px dashed var(--white);
  border-top: 2px dashed var(--white);
}

.doctors-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  border-right: 2px dashed var(--white);
  border-bottom: 2px dashed var(--white);
}

.doctors-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  transition: opacity 0.25s ease;
}

/* RIGHT: Tabs as cards/plates */
.doctor-tabs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 240px;
}

.doctor-tab {
  text-align: left;
  background: rgba(255,255,255,0.12);
  border: 2px solid transparent;
  padding: 20px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.doctor-tab:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(-5px);
}

.doctor-tab.is-active {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transform: translateX(-10px);
}

.tab-name {
  display: block;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.tab-role {
  display: block;
  font-family: var(--font-main);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.doctor-tab.is-active .tab-name {
  color: var(--graphite);
}

.doctor-tab.is-active .tab-role {
  color: var(--gold);
}


/* Responsive */
@media (max-width: 1200px) {
  .doctors-inner {
    grid-template-columns: 1fr 1.2fr auto;
    gap: 25px;
  }
  .doctor-tabs {
    width: 200px;
  }
  .doctors-info {
    max-width: 380px;
  }
  .doctors-photo {
    height: 70vh;
    min-height: 500px;
    max-height: 650px;
  }
}

@media (max-width: 992px) {
  .doctors {
    min-height: auto;
    padding: 60px 0;
  }

  .doctors-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .doctors-info {
    max-width: 100%;
    order: 1;
  }

  .doctors-photo {
    order: 2;
    height: 450px;
    min-height: auto;
    max-height: none;
    max-width: 400px;
    margin: 0 auto;
  }

  .doctor-tabs {
    order: 3;
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }

  .doctor-tab {
    flex: 1;
    text-align: center;
    padding: 14px 12px;
  }

  .doctor-tab:hover,
  .doctor-tab.is-active {
    transform: translateY(-5px);
  }

  .doctor-card {
    text-align: left;
  }

  .doctor-meta {
    justify-content: center;
  }

  .doctor-cta {
    display: block;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .doctors {
    padding: 50px 0;
  }

  .doctors-photo {
    height: 380px;
    max-width: 320px;
  }

  .tab-name {
    font-size: 12px;
  }

  .tab-role {
    font-size: 8px;
  }

  .doctor-name {
    font-size: 22px;
  }

  .doctor-card {
    padding: 24px;
  }

  .doctor-tab {
    padding: 10px 8px;
  }
}


/* ==================== */
/* Contacts Section */
/* ==================== */
.contacts {
  min-height: 100vh;
  background: var(--white);
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contacts-info {
  display: flex;
  flex-direction: column;
}

.contacts-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border: 1px dashed var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.contact-text {
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.4;
}

.contact-text strong {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--graphite);
  margin-right: 8px;
}

.contact-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--graphite);
}

.contact-text span {
  opacity: 0.85;
}

.contacts-cta {
  margin-top: 20px;
  display: inline-block;
  align-self: flex-start;
}

/* Map */
.contacts-map {
  position: relative;
  min-height: 400px;
  padding: 15px;
}

.contacts-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-left: 2px dashed var(--gold);
  border-top: 2px dashed var(--gold);
}

.contacts-map::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-right: 2px dashed var(--gold);
  border-bottom: 2px dashed var(--gold);
}

.map-frame {
  width: 100%;
  height: 100%;
  background: var(--milk);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contacts responsive */
@media (max-width: 992px) {
  .contacts-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contacts-map {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .contacts {
    padding: 50px 0;
  }

  .contacts-grid {
    gap: 14px;
  }

  .contacts-map {
    min-height: 300px;
    padding: 10px;
  }

  .contacts-map::before,
  .contacts-map::after {
    width: 50px;
    height: 50px;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
  }

  .contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .contact-text {
    font-size: 12px;
  }

  .contact-text strong {
    font-size: 12px;
  }
}


/* ==================== */
/* Footer */
/* ==================== */
.footer {
  background: var(--graphite);
  padding: 50px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-logo .logo {
  width: 50px;
  height: 50px;
  background-color: var(--gold);
}

.footer-logo .logo-title {
  color: var(--white);
  font-size: 18px;
}

.footer-logo .logo-subtitle {
  color: var(--gold);
  font-size: 9px;
}

.footer-about {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-title {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: var(--font-main);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contacts a,
.footer-contacts span {
  font-family: var(--font-main);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contacts a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-main);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* Footer responsive */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-nav,
  .footer-contacts {
    align-items: center;
  }

  .footer-title {
    margin-bottom: 15px;
  }
}
