  :root {
    --bg:        #1A0A04;
    --bg2:       #220D05;
    --bg3:       #2C1208;
    --amber:     #C8720A;
    --golden:    #D4920C;
    --warm-gold: #E8B84B;
    --cream:     #F7EDD8;
    --white:     #FFFDF8;
  }

  * { margin:0; padding:0; box-sizing:border-box; }
  html { scroll-behavior:smooth; }

  body {
    background: var(--bg);
    color: var(--cream);
    font-family: 'Special Elite', 'Noto Serif Georgian', serif;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top:0; left:0; right:0; z-index:200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 4vw;
    background: rgba(12,4,1,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200,114,10,0.22);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-logo-wrap {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(232,184,75,0.65);
    box-shadow: 0 0 14px rgba(200,114,10,0.5), inset 0 0 6px rgba(200,114,10,0.1);
    flex-shrink: 0;
    background: #2C1208;
  }

  .nav-logo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .nav-logo-text {
    font-family: 'Special Elite', serif;
    font-size: 1.35rem;
    color: var(--warm-gold);
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .nav-logo-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(232,184,75,0.5);
    display: block;
    margin-top: 1px;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(247,237,216,0.68);
    font-family: 'Special Elite', serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--warm-gold); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 9rem 5vw 6rem;
    position: relative;
    background:
      radial-gradient(ellipse 70% 55% at 50% 40%, rgba(200,114,10,0.13) 0%, transparent 65%),
      radial-gradient(ellipse 40% 40% at 10% 85%, rgba(92,34,8,0.18) 0%, transparent 55%),
      var(--bg);
    overflow: hidden;
  }

  .hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200,114,10,0.07);
    pointer-events: none;
  }
  .hero-ring:nth-child(1) { width:660px; height:660px; top:50%; left:50%; transform:translate(-50%,-50%); }
  .hero-ring:nth-child(2) { width:1020px; height:1020px; top:50%; left:50%; transform:translate(-50%,-50%); }

  .hero > *:not(.hero-ring) { position:relative; z-index:1; }

  .hero-badge {
    display: inline-block;
    font-family: 'Special Elite', serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(200,114,10,0.38);
    padding: 0.4rem 1.3rem;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease forwards;
    opacity:0;
    animation-delay: 0.1s;
  }

  /* Hero logo — big circle */
  .hero-logo-wrap {
    width: 210px; height: 210px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(232,184,75,0.5);
    box-shadow:
      0 0 0 8px rgba(200,114,10,0.08),
      0 0 40px rgba(200,114,10,0.35),
      0 8px 40px rgba(0,0,0,0.6);
    margin-bottom: 2.2rem;
    background: #2C1208;
    animation: fadeUp 0.8s ease forwards;
    opacity:0;
    animation-delay: 0.25s;
    flex-shrink: 0;
  }

  .hero-logo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero h1 {
    font-family: 'Special Elite', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 0.4rem;
    animation: fadeUp 0.8s ease forwards;
    opacity:0;
    animation-delay: 0.4s;
    letter-spacing: 0.02em;
  }
  .hero h1 span { color: var(--amber); }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(247,237,216,0.58);
    margin-bottom: 3rem;
    letter-spacing: 0.06em;
    animation: fadeUp 0.8s ease forwards;
    opacity:0;
    animation-delay: 0.55s;
  }

  .hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease forwards;
    opacity:0;
    animation-delay: 0.7s;
  }

  .btn-primary {
    display: inline-block;
    padding: 0.9rem 2.6rem;
    background: var(--amber);
    color: var(--white);
    text-decoration: none;
    font-family: 'Special Elite', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--amber);
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    background: var(--golden);
    border-color: var(--golden);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,114,10,0.35);
  }

  .btn-outline {
    display: inline-block;
    padding: 0.9rem 2.6rem;
    background: transparent;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Special Elite', serif;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(247,237,216,0.28);
    transition: all 0.3s ease;
  }
  .btn-outline:hover {
    border-color: var(--warm-gold);
    color: var(--warm-gold);
    transform: translateY(-2px);
  }

  /* ── SHARED ── */
  section { padding: 7rem 5vw; }

  .section-label {
    font-family: 'Special Elite', serif;
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Special Elite', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
  }
  .section-title em { font-style:italic; color: var(--amber); }

  /* ── ABOUT ── */
  .about {
    background: var(--bg2);
    border-top: 1px solid rgba(200,114,10,0.1);
    border-bottom: 1px solid rgba(200,114,10,0.1);
  }

  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text {
    font-size: 1rem;
    line-height: 1.95;
    font-weight: 300;
    color: rgba(247,237,216,0.75);
    margin-bottom: 1.4rem;
    font-family: 'Noto Serif Georgian', serif;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200,114,10,0.18);
  }

  .stat-num {
    font-family: 'Special Elite', serif;
    font-size: 2.1rem;
    color: var(--warm-gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.35rem;
  }

  .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(247,237,216,0.4);
    font-family: 'Noto Serif Georgian', serif;
  }

  .about-img-frame {
    position: relative;
  }

  .about-img-frame img {
    width: 100%; height: 450px;
    object-fit: cover;
    display: block;
    position: relative; z-index: 1;
    filter: sepia(10%) contrast(1.05) brightness(0.9);
    box-shadow: -6px 6px 30px rgba(0,0,0,0.5);
  }

  .about-img-caption {
    position: absolute;
    bottom: 12px; right: 0;
    background: var(--amber);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'Special Elite', serif;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 2;
  }

  /* ── GALLERY ── */
  .gallery { background: var(--bg); }

  .gallery-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 2.5rem;
  }

  .gallery-grid {
    max-width: 1200px;
    margin: 0 auto 1rem;
    display: grid;
    gap: 0.9rem;
  }

  .gallery-main  { grid-template-columns: 2fr 1fr; }
  .gallery-three { grid-template-columns: repeat(3, 1fr); }
  .gallery-four  { grid-template-columns: repeat(3, 1fr); }

  .gallery-item { position:relative; overflow:hidden; cursor:pointer; }

  .gallery-main  .gallery-item img { height: 270px; }
  .gallery-three .gallery-item img { height: 210px; }
  .gallery-four  .gallery-item img { height: 195px; }

  .gallery-item img {
    width: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s ease;
    filter: sepia(5%) contrast(1.04) brightness(0.9);
  }
  .gallery-item:hover img { transform: scale(1.05); }

  .gallery-overlay {
    position: absolute; inset:0;
    background: linear-gradient(to top, rgba(15,5,1,0.8) 0%, transparent 50%);
    opacity:0; transition: opacity 0.35s;
    display: flex; align-items: flex-end;
    padding: 1rem 1.1rem;
  }
  .gallery-item:hover .gallery-overlay { opacity:1; }

  .gallery-overlay-text {
    color: var(--cream);
    font-family: 'Special Elite', serif;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
  }

  /* ── FEATURES ── */
  .features {
    background: var(--bg3);
    border-top: 1px solid rgba(200,114,10,0.1);
    border-bottom: 1px solid rgba(200,114,10,0.1);
  }

  .features-inner { max-width:1200px; margin:0 auto; }
  .features-header { text-align:center; margin-bottom:3.5rem; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2px;
    background: rgba(200,114,10,0.12);
  }

  .feature-card {
    background: var(--bg3);
    padding: 2.8rem 2.3rem;
    position: relative;
    transition: background 0.3s;
  }

  .feature-card::after {
    content:''; position: absolute;
    bottom:0; left:0;
    height:2px; width:0;
    background: var(--amber);
    transition: width 0.4s ease;
  }
  .feature-card:hover { background: rgba(44,18,8,0.95); }
  .feature-card:hover::after { width:100%; }

  .feature-icon { font-size:2rem; margin-bottom:1rem; display:block; }

  .feature-title {
    font-family: 'Special Elite', serif;
    font-size: 1.2rem;
    color: var(--warm-gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }

  .feature-text {
    font-size: 0.88rem;
    line-height: 1.85;
    color: rgba(247,237,216,0.62);
    font-family: 'Noto Serif Georgian', serif;
  }

  /* ── CONTACT ── */
  .contact {
    background: var(--bg2);
    text-align: center;
    border-top: 1px solid rgba(200,114,10,0.1);
  }

  .contact-inner { max-width:660px; margin:0 auto; }

  .contact-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(247,237,216,0.55);
    margin-bottom: 3rem;
    line-height: 1.75;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: rgba(247,237,216,0.82);
    font-family: 'Special Elite', serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    transition: color 0.3s;
  }
  .contact-link:hover { color: var(--warm-gold); }

  .contact-link-icon {
    width:46px; height:46px;
    border: 1px solid rgba(200,114,10,0.28);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: rgba(200,114,10,0.06);
    transition: all 0.3s;
  }
  .contact-link:hover .contact-link-icon {
    background: var(--amber);
    border-color: var(--amber);
  }

  .contact-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Special Elite', serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(247,237,216,0.3);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(200,114,10,0.12);
  }

  /* ── FOOTER ── */
  footer {
    background: #0C0300;
    padding: 1.8rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(200,114,10,0.1);
  }

  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .footer-logo-wrap {
    width: 34px; height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid rgba(200,114,10,0.4);
    box-shadow: 0 0 8px rgba(200,114,10,0.3);
    background: #2C1208;
  }

  .footer-logo-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
  }

  .footer-name {
    font-family: 'Special Elite', serif;
    font-size: 1rem;
    color: var(--golden);
  }

  .footer-copy {
    font-size: 0.7rem;
    color: rgba(247,237,216,0.26);
    letter-spacing: 0.1em;
    font-family: 'Special Elite', serif;
  }

  .footer-author {
    font-size: 0.58rem;
    color: rgba(247,237,216,0.18);
    letter-spacing: 0.08em;
    font-family: 'Special Elite', serif;
    font-style: italic;
    text-align: right;
    line-height: 1.6;
  }

  /* ── REVEAL ── */
  .reveal {
    opacity:0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity:1; transform:none; }

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

  @media (max-width:900px) {
    .about-inner { grid-template-columns:1fr; gap:3rem; }
    .gallery-main  { grid-template-columns:1fr 1fr; }
    .gallery-three { grid-template-columns:1fr 1fr; }
    .gallery-four  { grid-template-columns:1fr 1fr; }
    .gallery-main .gallery-item img,
    .gallery-three .gallery-item img,
    .gallery-four .gallery-item img { height: 190px; }
    .features-grid { grid-template-columns:1fr; }
    .nav-links { display:none; }
  }

  @media (max-width:600px) {
    .gallery-main,
    .gallery-three,
    .gallery-four  { grid-template-columns:1fr; }
    .gallery-main .gallery-item img,
    .gallery-three .gallery-item img,
    .gallery-four .gallery-item img { height: 220px; }
    footer { flex-direction:column; gap:0.6rem; text-align:center; }
  }

  /* ── LANG SWITCHER ── */
  .lang-switcher {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    margin-left: 1.5rem;
  }

  .lang-btn {
    background: transparent;
    border: 1px solid rgba(200,114,10,0.25);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.2rem 0.45rem;
    border-radius: 4px;
    transition: all 0.2s;
    line-height: 1;
    opacity: 0.45;
    color: inherit;
  }

  .lang-btn:hover {
    opacity: 0.85;
    border-color: var(--amber);
  }

  .lang-btn.active {
    opacity: 1;
    border-color: var(--warm-gold);
    background: rgba(200,114,10,0.13);
    box-shadow: 0 0 8px rgba(200,114,10,0.2);
  }

  /* ── FLOATING CONTACT SIDEBAR ── */
  .float-contact {
    position: fixed;
    right: 0;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 300;
  }
  .float-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    text-decoration: none;
    padding: 0;
    overflow: hidden;
    width: 52px;
    height: 52px;
    transition: width 0.32s cubic-bezier(.4,0,.2,1), background 0.2s;
    background: rgba(12,4,1,0.88);
    border-left: 2px solid rgba(200,114,10,0.35);
    border-top: 1px solid rgba(200,114,10,0.18);
    border-bottom: 1px solid rgba(200,114,10,0.18);
    backdrop-filter: blur(10px);
    white-space: nowrap;
  }
  .float-btn:first-child { border-radius: 8px 0 0 0; }
  .float-btn:last-child  { border-radius: 0 0 0 8px; }
  .float-btn:hover {
    width: 180px;
    background: rgba(200,114,10,0.15);
    border-left-color: var(--amber);
  }
  .float-btn-label {
    font-family: 'Special Elite', serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(247,237,216,0.85);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.22s 0.08s, transform 0.22s 0.08s;
    pointer-events: none;
    padding-left: 14px;
  }
  .float-btn:hover .float-btn-label {
    opacity: 1;
    transform: translateX(0);
  }
  .float-btn-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 600px) {
    .float-contact { display: none; }
  }
