/* ============================
   Giedrė Arcinavičiūtė — NT
   Premium editorial landing
   ============================ */

:root {
  --bg: #faf8f5;
  --bg-2: #f3efe7;
  --ink: #1c1c1e;
  --ink-2: #3a3a3c;
  --muted: #6b6b70;
  --line: #e5dfd3;
  --accent: #c9a87a;
  --accent-dark: #a8865a;
  --dark: #1a1816;
  --dark-2: #221f1c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }
.italic { font-style: italic; color: var(--accent-dark); font-weight: 500; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 500; margin-bottom: 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; transition: all .3s ease; border-radius: 0;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--bg); border: 1px solid rgba(250,248,245,0.5); }
.btn-outline:hover { background: var(--bg); color: var(--ink); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-dark); color: var(--bg); }
.btn-ghost { padding: 10px 22px; font-size: 13px; border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0; transition: all .35s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(250,248,245,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600;
  color: var(--bg); letter-spacing: 0.01em;
}
.nav.scrolled .nav-brand { color: var(--ink); }
.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.06em; color: var(--bg);
  opacity: 0.85; transition: opacity .2s, color .2s; font-weight: 400;
}
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav-links a:hover { opacity: 1; color: var(--accent-dark); }
.nav-cta {
  padding: 10px 22px; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; border: 1px solid rgba(250,248,245,0.6);
  color: var(--bg); transition: all .3s;
}
.nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }

.nav-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--bg); transition: all .3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background-image: url('/hero-bg.jpg');
  background-size: cover; background-position: center; background-attachment: scroll;
  color: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,24,22,0.75) 0%, rgba(26,24,22,0.55) 60%, rgba(26,24,22,0.4) 100%);
}
.hero-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; align-items: center; padding: 140px 0 80px;
}
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(40px, 6vw, 76px); line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero p.sub {
  font-size: 18px; line-height: 1.65; max-width: 540px;
  color: rgba(250,248,245,0.85); margin-bottom: 40px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: 2px;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ''; position: absolute; inset: -1px; border: 1px solid rgba(201,168,122,0.4);
  pointer-events: none;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(250,248,245,0.6); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px; background: rgba(250,248,245,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */
.section-head { max-width: 720px; margin-bottom: 72px; }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 20px;
}
.section-head h2 em { font-style: italic; color: var(--accent-dark); font-weight: 500; }
.section-head p { font-size: 17px; color: var(--ink-2); max-width: 580px; }

/* ===== Vertinimas (split) ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.feature-list { margin-top: 48px; display: flex; flex-direction: column; gap: 32px; }
.feature {
  display: flex; gap: 20px; align-items: flex-start;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.feature:last-child { border-bottom: none; padding-bottom: 0; }
.feature-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); color: var(--accent-dark); border-radius: 50%;
}
.feature h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-weight: 600; margin-bottom: 8px;
}
.feature p { color: var(--muted); font-size: 15px; }

.form-wrap {
  background: #fff; padding: 40px; border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -40px rgba(28,28,30,0.18);
}
.tally-embed { width: 100%; min-height: 540px; border: none; }

/* ===== Apie mane ===== */
.about-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo::before {
  content: ''; position: absolute; bottom: -20px; left: -20px; right: 40px; top: 40px;
  border: 1px solid var(--accent); z-index: -1;
}
.about-content h2 { margin-bottom: 28px; }
.about-content p { font-size: 17px; color: var(--ink-2); margin-bottom: 20px; line-height: 1.75; }
.about-stats {
  margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 32px; padding-top: 40px; border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 40px;
  font-weight: 600; color: var(--accent-dark); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }

/* ===== Paslaugos (dark) ===== */
.services { background: var(--dark); color: var(--bg); }
.services .section-head h2 { color: var(--bg); }
.services .section-head p { color: rgba(250,248,245,0.7); }
.services .eyebrow { color: var(--accent); }

.service-row {
  display: grid; grid-template-columns: 80px 1fr 2fr;
  gap: 48px; padding: 48px 0; border-top: 1px solid rgba(250,248,245,0.1);
  align-items: start; transition: padding .4s ease;
}
.service-row:last-child { border-bottom: 1px solid rgba(250,248,245,0.1); }
.service-row:hover { padding-left: 16px; }
.service-num {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  font-style: italic; color: var(--accent);
}
.service-row h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  font-weight: 600; line-height: 1.15;
}
.service-row p { color: rgba(250,248,245,0.7); font-size: 16px; line-height: 1.75; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card {
  background: #fff; padding: 40px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(28,28,30,0.2);
}
.testimonial-top { display: flex; justify-content: space-between; align-items: center; }
.stars { color: var(--accent-dark); font-size: 16px; letter-spacing: 2px; }
.google-g {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, #4285F4, #DB4437);
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-style: italic; line-height: 1.45; color: var(--ink); font-weight: 500;
}
.testimonial-author { font-size: 14px; color: var(--muted); margin-top: auto; letter-spacing: 0.04em; }
.testimonial-author strong { color: var(--ink); font-weight: 500; }

/* ===== Kontaktai ===== */
.contact { background: var(--bg-2); }
.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 28px; }
.contact-info > p { font-size: 17px; color: var(--ink-2); margin-bottom: 40px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 0; border-top: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: 1px solid var(--line); }
.contact-item-icon {
  flex-shrink: 0; color: var(--accent-dark); width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.contact-item-value { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--accent-dark); }

.contact-form {
  background: #fff; padding: 48px; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.form-field input, .form-field textarea, .form-field select {
  padding: 14px 16px; border: 1px solid var(--line); background: var(--bg);
  font-family: inherit; font-size: 15px; color: var(--ink);
  transition: border-color .2s; border-radius: 0;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--accent-dark);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%231c1c1e' stroke-width='1.5' fill='none'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { margin-top: 8px; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(250,248,245,0.7); padding: 80px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,248,245,0.1);
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif; font-size: 28px;
  color: var(--bg); margin-bottom: 16px; font-weight: 600;
}
.footer p { font-size: 14px; line-height: 1.7; max-width: 360px; }
.footer h5 {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bg); margin-bottom: 20px; font-weight: 500;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer a, .footer button { font-size: 14px; color: rgba(250,248,245,0.7); transition: color .2s; text-align: left; }
.footer a:hover, .footer button:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; font-size: 13px; flex-wrap: wrap; gap: 16px;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,24,22,0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg); max-width: 760px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 56px;
  position: relative; border-radius: 2px;
  transform: translateY(20px); transition: transform .3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  font-weight: 600; margin-bottom: 24px;
}
.modal h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; margin: 24px 0 12px; }
.modal p { color: var(--ink-2); margin-bottom: 14px; font-size: 15px; line-height: 1.7; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); transition: all .2s; font-size: 18px;
}
.modal-close:hover { background: var(--ink); color: var(--bg); }

/* ===== Fade animations ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ===== Mobile ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .split, .about-split, .contact-split { grid-template-columns: 1fr; gap: 60px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row p { grid-column: 2; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .nav { padding: 16px 0; }
  .nav-brand { font-size: 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 20px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px; border-top: 1px solid var(--line);
  }
  .nav.open .nav-links a { color: var(--ink); }

  .hero { background-attachment: scroll; }
  .hero::before { background: rgba(26,24,22,0.82); }
  .hero-inner { grid-template-columns: 1fr; padding: 110px 0 60px; }
  .hero-photo { display: none; }
  .hero h1 { font-size: 36px; line-height: 1.1; }
  .hero p.sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }

  .form-wrap, .contact-form, .modal { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .service-row h3 { font-size: 26px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 32px; }
  .modal h3 { font-size: 28px; }
}