:root {
  --ink: #001524;
  --ink-soft: #0a2b3d;
  --gold: #d6cc99;
  --gold-light: #eee8c9;
  --paper: #f7f5ef;
  --white: #ffffff;
  --text: #1e2a32;
  --muted: #66717a;
  --line: rgba(0, 21, 36, 0.13);
  --shadow: 0 18px 60px rgba(0, 21, 36, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Noto Sans Armenian", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 104px 0; }
.section-kicker, .eyebrow {
  margin: 0 0 14px;
  color: #8d824d;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Noto Serif Armenian", Georgia, serif;
  letter-spacing: -.025em;
}
h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.22;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  color: var(--white);
}
.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 190px; height: auto; }
.desktop-nav { display: flex; gap: 28px; margin-left: auto; }
.desktop-nav a { font-size: .88rem; color: rgba(255,255,255,.82); transition: color .2s; }
.desktop-nav a:hover { color: var(--gold); }
.header-cta {
  border: 1px solid rgba(214,204,153,.7);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: .88rem;
  font-weight: 600;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  background: var(--ink);
  color: var(--white);
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: 128px max(7vw, 46px) 86px max(7vw, 46px);
}
.hero-copy-inner { max-width: 660px; }
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(2.85rem, 5vw, 5.4rem);
  line-height: 1.08;
  color: var(--white);
}
.hero h1 span { color: var(--gold); }
.hero-lead { max-width: 620px; color: rgba(255,255,255,.76); font-size: 1.03rem; }
.offer {
  width: fit-content;
  margin: 30px 0;
  padding: 15px 20px;
  border: 1px solid rgba(214,204,153,.42);
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 9px;
  background: rgba(255,255,255,.035);
}
.offer-label { grid-column: 1 / -1; color: var(--gold); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.offer strong { font-size: 1.35rem; color: var(--gold-light); }
.offer > span:last-child { font-size: .8rem; color: rgba(255,255,255,.68); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.3;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold); box-shadow: 0 10px 25px rgba(214,204,153,.2); }
.button-primary:hover { background: var(--gold-light); box-shadow: 0 14px 32px rgba(214,204,153,.28); }
.button-ghost { color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.button-ghost:hover { border-color: var(--gold); }
.offer-note { margin: 13px 0 0; font-size: .68rem; color: rgba(255,255,255,.48); }

.hero-visual { position: relative; min-height: 760px; overflow: hidden; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,21,36,.28), transparent 28%), linear-gradient(0deg, rgba(0,21,36,.15), transparent 35%);
  pointer-events: none;
}
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: center 42%; }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  width: 190px;
  min-height: 145px;
  padding: 20px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,21,36,.92);
  border: 1px solid rgba(214,204,153,.56);
  box-shadow: var(--shadow);
}
.hero-stamp span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .66rem; }
.hero-stamp strong { margin-top: 6px; font-size: .72rem; line-height: 1.6; color: var(--white); }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.intro-copy > p { margin-bottom: 30px; color: var(--muted); font-size: 1.03rem; }
.quick-benefits { display: grid; gap: 0; border-top: 1px solid var(--line); }
.quick-benefits span { padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.quick-benefits span::before { content: "✓"; margin-right: 10px; color: #9d9257; }

.works { background: var(--paper); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading > p { max-width: 360px; margin-bottom: 4px; color: var(--muted); font-size: .86rem; }
.section-heading.centered { display: block; text-align: center; margin-bottom: 50px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 15px;
}
.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #d9d8d2;
  cursor: zoom-in;
  box-shadow: 0 8px 28px rgba(0,21,36,.08);
}
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .35s ease; }
.gallery-item:nth-child(2) img { object-position: center 38%; }
.gallery-item:nth-child(6) img { object-position: center 18%; }
.gallery-item span {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(0,21,36,.78);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .7rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,21,36,.25), transparent 45%); opacity: .35; transition: opacity .3s; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(1.04); }
.gallery-item:hover span, .gallery-item:focus-visible span { opacity: 1; transform: none; }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.process { background: var(--ink); color: var(--white); }
.process h2 { color: var(--white); }
.process .section-kicker { color: var(--gold); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps li {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(214,204,153,.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.035);
}
.step-number { display: block; margin-bottom: 40px; color: var(--gold); font-family: Georgia, serif; font-size: 1.5rem; }
.steps h3 { margin-bottom: 13px; color: var(--gold-light); font-size: 1.05rem; }
.steps p { margin-bottom: 0; color: rgba(255,255,255,.63); font-size: .82rem; }

.business { background: var(--white); }
.business-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.business-copy { padding: clamp(44px, 7vw, 90px); align-self: center; }
.business-copy .section-kicker { color: var(--gold); }
.business-copy h2 { color: var(--white); }
.business-copy p:not(.section-kicker) { max-width: 620px; margin: 24px 0 30px; color: rgba(255,255,255,.69); }
.business-image { min-height: 560px; }
.business-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 10vw, 130px); align-items: start; }
.contact-grid > div:first-child > p:last-child { margin-top: 22px; color: var(--muted); }
.contact-links { border-top: 1px solid var(--line); }
.contact-link { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 21px 0; border-bottom: 1px solid var(--line); transition: padding .2s ease, color .2s; }
.contact-link span { color: var(--muted); font-size: .78rem; }
.contact-link strong { color: var(--ink); font-size: .94rem; }
.contact-link:hover { padding-left: 10px; color: #8d824d; }

.site-footer { padding: 52px 0 95px; background: var(--ink); color: rgba(255,255,255,.55); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.footer-inner img { width: 150px; height: auto; }
.footer-inner p { margin: 0; font-size: .72rem; }
.footer-inner p:nth-child(2) { text-align: center; }

.mobile-actions { display: none; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 28px;
  border: 0;
  background: rgba(0,14,24,.96);
  color: white;
}
.lightbox::backdrop { background: rgba(0,0,0,.76); }
.lightbox[open] { display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.lightbox figure { margin: 0; display: grid; justify-items: center; gap: 13px; max-height: calc(100vh - 56px); }
.lightbox figure img { max-width: min(1100px, 80vw); max-height: calc(100vh - 110px); object-fit: contain; border-radius: 12px; box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lightbox figcaption { color: rgba(255,255,255,.68); font-size: .8rem; }
.lightbox-close, .lightbox-nav { border: 0; color: white; background: transparent; cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; top: 20px; right: 25px; width: 48px; height: 48px; font-size: 2.2rem; line-height: 1; }
.lightbox-nav { width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 2.3rem; }
.lightbox-nav:hover, .lightbox-close:hover { color: var(--gold); }

@media (max-width: 1020px) {
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-inline: 40px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery-item-large { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .business-card { grid-template-columns: 1.05fr .95fr; }
}

@media (max-width: 760px) {
  :root { --container: min(100% - 28px, 620px); --radius-lg: 22px; --radius-md: 15px; }
  .section { padding: 74px 0; }
  .site-header { position: absolute; }
  .header-inner { min-height: 75px; }
  .brand img { width: 154px; }
  .header-cta { padding: 8px 13px; font-size: .74rem; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .hero-copy { order: 2; padding: 42px 20px 62px; }
  .hero-copy-inner { max-width: none; }
  .hero .eyebrow { margin-bottom: 12px; font-size: .65rem; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-lead { font-size: .9rem; }
  .offer { margin: 25px 0; }
  .offer strong { font-size: 1.14rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { order: 1; min-height: 490px; height: 58vh; max-height: 610px; }
  .hero-visual::after { background: linear-gradient(180deg, rgba(0,21,36,.62), transparent 30%, rgba(0,21,36,.15)); }
  .hero-visual img { object-position: center 44%; }
  .hero-stamp { width: 142px; min-height: 112px; right: 16px; bottom: 16px; padding: 16px; }
  .hero-stamp strong { font-size: .6rem; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { display: block; margin-bottom: 27px; }
  .section-heading > p { margin-top: 13px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 225px; gap: 10px; }
  .gallery-item-large { grid-column: span 2; grid-row: span 2; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item span { opacity: 1; transform: none; font-size: .61rem; }
  .steps { grid-template-columns: 1fr; gap: 11px; }
  .steps li { min-height: 0; padding: 22px; }
  .step-number { margin-bottom: 22px; }
  .business-card { grid-template-columns: 1fr; }
  .business-copy { padding: 40px 24px; }
  .business-image { min-height: 420px; }
  .contact-link { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-inner p:nth-child(2) { text-align: center; }
  .site-footer { padding-bottom: 104px; }
  .mobile-actions {
    position: fixed;
    z-index: 80;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px max(12px, env(safe-area-inset-left)) calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(0,21,36,.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(214,204,153,.25);
  }
  .mobile-actions a { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; border: 1px solid rgba(214,204,153,.38); color: white; font-size: .72rem; font-weight: 700; }
  .mobile-actions a.whatsapp { background: var(--gold); color: var(--ink); border-color: var(--gold); }
  .mobile-actions svg { width: 17px; height: 17px; fill: currentColor; }
  .lightbox { padding: 16px; }
  .lightbox[open] { grid-template-columns: 1fr; }
  .lightbox figure img { max-width: 100%; max-height: calc(100vh - 130px); }
  .lightbox-nav { position: fixed; bottom: 24px; z-index: 3; width: 46px; height: 46px; background: rgba(0,21,36,.85); }
  .lightbox-prev { left: 22px; }
  .lightbox-next { right: 22px; }
}

@media (max-width: 420px) {
  .hero-visual { min-height: 440px; }
  .gallery { grid-auto-rows: 190px; }
}

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