﻿/* ============================================
   Baltika Tile & Stone — base & tokens
   ============================================ */

body.baltika-html-home {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', Arial, sans-serif;

  --color-bg: #ffffff;
  --color-cream: #f5f1ea;
  --color-cream-deep: #efe8dc;
  --color-dark: #1a1a19;
  --color-text: #262320;
  --color-muted: #6f6a63;
  --color-accent: #6b5a4c;
  --color-border: #e6ddd0;
  --color-border-light: rgba(255, 255, 255, 0.16);

  --container-width: 1320px;
  --gap-section-y: clamp(36px, 4vw, 64px);
}

.baltika-html-home *,
.baltika-html-home *::before,
.baltika-html-home *::after {
  box-sizing: border-box;
}

body.baltika-html-home {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.baltika-html-home img {
  max-width: 100%;
  display: block;
}

.baltika-html-home a {
  color: inherit;
  text-decoration: none;
}

.baltika-html-home ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.baltika-html-home h1,
.baltika-html-home h2,
.baltika-html-home h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 0;
  color: var(--color-dark);
}

.baltika-html-home p {
  margin: 0;
}

.baltika-html-home .container {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

/* anchored targets land clear of the fixed header in both its states */
.baltika-html-home [id] {
  scroll-margin-top: 112px;
}

.baltika-html-home .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.baltika-html-home .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
}

.baltika-html-home .skip-link:focus {
  left: 12px;
  top: 12px;
}

.baltika-html-home .eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 10px;
}

/* Buttons */

.baltika-html-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.baltika-html-home .btn-dark {
  background: var(--color-dark);
  color: #fff;
}

.baltika-html-home .btn-dark:hover {
  background: #333330;
}

.baltika-html-home .btn-dark:active {
  transform: translateY(1px);
}

.baltika-html-home .btn-light {
  background: #fff;
  color: var(--color-dark);
}

.baltika-html-home .btn-light:hover {
  background: var(--color-cream);
}

.baltika-html-home .btn-outline {
  background: transparent;
  color: #fff;
  border-color: var(--color-border-light);
}

.baltika-html-home .btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

/* ============================================
   Header
   ============================================ */

.baltika-html-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* the header is out of flow so its shrink can never shift the page;
   reserve its full-size footprint: 26px padding ×2 + 59px logo + 1px border */
body.baltika-html-home {
  padding-top: 112px;
}

/* compact translucent treatment once the page scrolls */
.baltika-html-home .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(26, 26, 25, 0.22);
}

.baltika-html-home .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px;
  transition: padding 0.3s ease;
}

.baltika-html-home .site-header.is-scrolled .header-inner {
  padding-block: 13px;
}

.baltika-html-home .logo img {
  height: 59px;
  width: auto;
  transition: height 0.3s ease;
}

.baltika-html-home .site-header.is-scrolled .logo img {
  height: 48px;
}

.baltika-html-home .primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.baltika-html-home .primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.baltika-html-home .primary-nav ul a {
  position: relative;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

/* hairline underline grows from the left on hover */
.baltika-html-home .primary-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.baltika-html-home .primary-nav ul a:hover {
  color: var(--color-accent);
}

.baltika-html-home .primary-nav ul a:hover::after,
.baltika-html-home .primary-nav ul a:focus-visible::after {
  transform: scaleX(1);
}

/* understated outline CTA that fills on hover */
.baltika-html-home .nav-cta {
  padding: 12px 24px;
  background: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}

.baltika-html-home .nav-cta:hover {
  background: var(--color-dark);
  color: #fff;
}

.baltika-html-home .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.baltika-html-home .nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.baltika-html-home .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.baltika-html-home .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.baltika-html-home .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.baltika-html-home .hero {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  align-items: stretch;
  background: var(--color-cream);
}

.baltika-html-home .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 1.7vw, 24px);
  padding: clamp(40px, 5.6vw, 84px) clamp(24px, 5vw, 64px);
}

.baltika-html-home .hero-content h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
}

.baltika-html-home .hero-content p {
  max-width: 420px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.65;
}

.baltika-html-home .hero-content .btn {
  margin-top: 12px;
  align-self: flex-start;
}

/* photo sits in the right column at natural scale */
.baltika-html-home .hero-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.baltika-html-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* the beige panel bleeds softly into the photo's left edge */
.baltika-html-home .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--color-cream) 0%,
    rgba(245, 241, 234, 0.72) 8%,
    rgba(245, 241, 234, 0.3) 18%,
    rgba(245, 241, 234, 0) 30%);
  z-index: 1;
  pointer-events: none;
}

/* restrained load motion: soft photo reveal + content rise */
@media (prefers-reduced-motion: no-preference) {
  .baltika-html-home .hero-media img {
    animation: hero-photo-reveal 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .baltika-html-home .hero-content > * {
    animation: hero-rise 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
  }

  .baltika-html-home .hero-content > *:nth-child(2) {
    animation-delay: 0.12s;
  }

  .baltika-html-home .hero-content > *:nth-child(3) {
    animation-delay: 0.24s;
  }

  @keyframes hero-photo-reveal {
    from {
      opacity: 0;
      transform: scale(1.04);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes hero-rise {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   Category circles
   ============================================ */

.baltika-html-home .categories {
  padding-block: clamp(48px, 5vw, 80px);
}

.baltika-html-home .category-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.baltika-html-home .category {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 18px;
}

.baltika-html-home .category + .category {
  border-left: 1px solid var(--color-border);
}

/* clean image-only circles — no border, halo, or shadow */
.baltika-html-home .category img {
  width: clamp(100px, 9.6vw, 136px);
  height: clamp(100px, 9.6vw, 136px);
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 22px;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.baltika-html-home .category:hover img {
  transform: scale(1.03);
}

.baltika-html-home .category h3 {
  position: relative;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 9px;
  padding-bottom: 5px;
}

/* hairline underline grows from the centre on hover */
.baltika-html-home .category h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.baltika-html-home .category:hover h3::after {
  transform: scaleX(1);
}

.baltika-html-home .category p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 180px;
}

/* single understated section CTA beneath the category circles */
.baltika-html-home .category-guidance {
  text-align: center;
  margin-top: clamp(30px, 3vw, 42px);
}

/* ============================================
   Split sections (Elevate / Final CTA)
   ============================================ */

.baltika-html-home .elevate {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
}

.baltika-html-home .elevate-media {
  position: relative;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}

.baltika-html-home .elevate-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.baltika-html-home .elevate-content {
  background: var(--color-cream);
  display: flex;
  align-items: center;
}

/* wider image column than the shared split so the room photo keeps
   more of its natural framing */
.baltika-html-home .elevate {
  grid-template-columns: minmax(280px, 50%) 1fr;
}

.baltika-html-home .elevate-content-inner {
  max-width: 500px;
  padding: clamp(32px, 3.6vw, 48px) clamp(24px, 6vw, 72px);
}

.baltika-html-home .elevate-content .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.baltika-html-home .elevate-content h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.baltika-html-home .elevate-content > .elevate-content-inner > p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 24px;
}

/* a slow, almost imperceptible settle on the photo */
.baltika-html-home .elevate-media img {
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.baltika-html-home .elevate:hover .elevate-media img {
  transform: scale(1.015);
}

.baltika-html-home .checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
  border-top: 1px solid var(--color-border);
  padding-top: 22px;
}

.baltika-html-home .checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--color-text);
}

.baltika-html-home .checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236b5a4c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-6.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* immersive full-bleed marble band with a floating invitation card */
.baltika-html-home .final-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-cream);
  padding-block: clamp(48px, 5.6vw, 92px);
}

.baltika-html-home .final-cta-media {
  position: absolute;
  inset: 0;
}

.baltika-html-home .final-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.baltika-html-home .final-cta:hover .final-cta-media img {
  transform: scale(1.015);
}

/* faint edge shading for depth over the pale marble */
.baltika-html-home .final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 26, 25, 0.05) 0%,
    rgba(26, 26, 25, 0) 30%,
    rgba(26, 26, 25, 0.12) 100%);
  pointer-events: none;
}

.baltika-html-home .final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.baltika-html-home .final-cta-card {
  background: #fff;
  border-radius: 2px;
  padding: clamp(30px, 3.4vw, 50px) clamp(26px, 3.4vw, 54px);
  max-width: 520px;
  box-shadow: 0 28px 56px -28px rgba(26, 26, 25, 0.3);
}

.baltika-html-home .final-cta-card .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.baltika-html-home .final-cta-card h2 {
  font-size: clamp(29px, 2.9vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.baltika-html-home .final-cta-lede {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 380px;
  margin-bottom: 18px;
}

.baltika-html-home .appointment-only {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--color-accent);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
  margin-bottom: 22px;
}

/* ============================================
   Popular styles
   ============================================ */

.baltika-html-home .styles {
  padding-block: clamp(44px, 4.6vw, 72px);
}

.baltika-html-home .styles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(26px, 2.6vw, 36px);
  gap: 16px;
}

.baltika-html-home .styles-header .eyebrow {
  margin: 0;
}

.baltika-html-home .view-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.baltika-html-home .view-all:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  gap: 10px;
}

.baltika-html-home .style-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 28px);
}

.baltika-html-home .style-card {
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-cream);
}

.baltika-html-home .style-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.baltika-html-home .style-card:hover img {
  transform: scale(1.03);
}

.baltika-html-home .style-card h3 {
  position: relative;
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 18px 20px 6px;
  padding-bottom: 4px;
}

/* hairline underline grows from the left on hover */
.baltika-html-home .style-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.baltika-html-home .style-card:hover h3::after {
  transform: scaleX(1);
}

.baltika-html-home .style-card p {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.55;
  margin: 0 20px 20px;
}

/* ============================================
   Feature strip
   ============================================ */

.baltika-html-home .features {
  background: var(--color-cream);
  padding-block: clamp(52px, 5.2vw, 84px);
}

.baltika-html-home .features-header {
  text-align: center;
  margin-bottom: clamp(34px, 3.4vw, 50px);
}

.baltika-html-home .features-header .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.baltika-html-home .features-header h2 {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
}

/* four benefit columns separated by hairlines, spec-sheet style */
.baltika-html-home .feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* each trust item reads as a centred stack: icon, heading, copy */
.baltika-html-home .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: clamp(20px, 2.4vw, 36px);
}

.baltika-html-home .feature + .feature {
  border-left: 1px solid var(--color-border);
}

.baltika-html-home .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
}

.baltika-html-home .feature h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.baltika-html-home .feature p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  max-width: 230px;
}

/* the warranty as a full-width dark feature band */
.baltika-html-home .features-cta {
  margin-top: clamp(40px, 4vw, 60px);
  background: var(--color-dark);
  color: #fff;
  border-radius: 4px;
  padding: clamp(44px, 4.6vw, 68px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.baltika-html-home .warranty-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  margin-bottom: 20px;
}

.baltika-html-home .warranty-badge strong {
  font-family: var(--font-sans);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
}

.baltika-html-home .warranty-badge small {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #b8b2a8;
  margin-top: 3px;
}

.baltika-html-home .warranty-kicker {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8b2a8;
  margin-bottom: 12px;
}

.baltika-html-home .features-cta h3 {
  font-family: var(--font-serif);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
}

.baltika-html-home .warranty-lede {
  font-size: 14.5px;
  line-height: 1.65;
  color: #b8b2a8;
  max-width: 560px;
  margin-bottom: 26px;
}

.baltika-html-home .features-cta .btn {
  padding: 14px 30px;
}

/* ============================================
   Contact
   ============================================ */

.baltika-html-home .contact {
  background: var(--color-cream);
  padding-block: clamp(48px, 5vw, 76px);
}

/* one composition: details table left, form right, joined by a hairline */
.baltika-html-home .contact-inner {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) 7fr;
  align-items: start;
}

.baltika-html-home .contact-intro {
  padding-right: clamp(28px, 4vw, 64px);
}

/* hierarchy: showroom kicker, prominent appointment line, then the ask */
.baltika-html-home .contact-intro .eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 9px;
}

.baltika-html-home .appointment-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.3;
  color: var(--color-accent);
  margin-bottom: 22px;
}

.baltika-html-home .contact-intro h2 {
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.12;
  margin-bottom: 12px;
}

.baltika-html-home .contact-lede {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 22px;
}

.baltika-html-home .appointment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-dark);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.baltika-html-home .appointment-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  gap: 10px;
}

.baltika-html-home .contact-details {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  margin-top: 30px;
}

.baltika-html-home .contact-details li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
}

.baltika-html-home .contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 3px;
}

.baltika-html-home .contact-details a {
  color: var(--color-text);
  transition: color 0.2s ease;
}

.baltika-html-home .contact-details a:hover {
  color: var(--color-accent);
}

.baltika-html-home .contact-form {
  border-left: 1px solid var(--color-border);
  padding-left: clamp(28px, 4vw, 64px);
}

.baltika-html-home .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

.baltika-html-home .form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.baltika-html-home .form-field-full {
  grid-column: 1 / -1;
}

.baltika-html-home .form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

/* the focused field's label warms to the accent */
.baltika-html-home .form-field:focus-within label {
  color: var(--color-accent);
}

/* quiet hairline fields — no boxes */
.baltika-html-home .form-field input,
.baltika-html-home .form-field select,
.baltika-html-home .form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 6px 0 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.baltika-html-home .form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b5a4c' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 11px 8px;
  padding-right: 26px;
  cursor: pointer;
}

.baltika-html-home .form-field textarea {
  resize: vertical;
  min-height: 84px;
  line-height: 1.6;
}

.baltika-html-home .form-field input::placeholder,
.baltika-html-home .form-field textarea::placeholder {
  color: #b3aca2;
}

/* select shows placeholder tone until a choice is made */
.baltika-html-home .form-field select:has(option[value=""]:checked) {
  color: #b3aca2;
}

.baltika-html-home .form-field select option {
  color: var(--color-text);
}

.baltika-html-home .form-field input:focus,
.baltika-html-home .form-field select:focus,
.baltika-html-home .form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--color-dark);
  box-shadow: 0 1px 0 0 var(--color-dark);
}

.baltika-html-home .form-field input.is-invalid,
.baltika-html-home .form-field select.is-invalid,
.baltika-html-home .form-field textarea.is-invalid {
  border-bottom-color: #b0483c;
  box-shadow: 0 1px 0 0 #b0483c;
}

.baltika-html-home .form-status {
  min-height: 20px;
  margin-block: 12px 2px;
  font-size: 13px;
  color: var(--color-accent);
}

.baltika-html-home .form-status.is-error {
  color: #b0483c;
}

.baltika-html-home .form-status a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.baltika-html-home .contact-form .btn {
  width: 100%;
  padding-block: 15px;
}

/* ============================================
   Contact form — Fluent Forms embed
   Scoped translation of the .form-grid / .form-field rules above onto
   Fluent Forms' own markup (.fluentform / .ff-el-group / .ff-el-form-control),
   so the plugin form is visually indistinguishable from the original static form.
   ============================================ */

.baltika-html-home .contact-form .fluentform {
  margin: 0;
}

.baltika-html-home .contact-form .fluentform fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

.baltika-html-home .contact-form .ff-el-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0;
}

/* the message textarea and the submit button span both columns */
.baltika-html-home .contact-form .ff-el-group:has(textarea),
.baltika-html-home .contact-form .ff_submit_btn_wrapper {
  grid-column: 1 / -1;
}

.baltika-html-home .contact-form .ff-el-input--label {
  margin: 0;
}

.baltika-html-home .contact-form .ff-el-input--label label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.2s ease;
}

.baltika-html-home .contact-form .ff-el-group:focus-within .ff-el-input--label label {
  color: var(--color-accent);
}

/* the approved design has no required-field asterisk */
.baltika-html-home .contact-form .ff-el-is-required.asterisk-right label::after {
  content: none;
}

.baltika-html-home .contact-form .ff-el-input--content {
  margin: 0;
}

.baltika-html-home .contact-form .ff-el-form-control {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  border-radius: 0;
  padding: 6px 0 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.baltika-html-home .contact-form select.ff-el-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%236b5a4c' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 11px 8px;
  padding-right: 26px;
  cursor: pointer;
}

.baltika-html-home .contact-form textarea.ff-el-form-control {
  resize: vertical;
  min-height: 84px;
  line-height: 1.6;
}

.baltika-html-home .contact-form .ff-el-form-control::placeholder {
  color: #b3aca2;
  opacity: 1;
}

.baltika-html-home .contact-form select.ff-el-form-control:has(option[value=""]:checked) {
  color: #b3aca2;
}

.baltika-html-home .contact-form select.ff-el-form-control option {
  color: var(--color-text);
}

.baltika-html-home .contact-form .ff-el-form-control:focus {
  outline: none;
  border-bottom-color: var(--color-dark);
  box-shadow: 0 1px 0 0 var(--color-dark);
}

/* Fluent Forms flags invalid fields with .ff-el-is-error on the group */
.baltika-html-home .contact-form .ff-el-is-error .ff-el-form-control {
  border-bottom-color: #b0483c;
  box-shadow: 0 1px 0 0 #b0483c;
}

.baltika-html-home .contact-form .ff-el-is-error .error {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #b0483c;
  margin-top: 2px;
}

.baltika-html-home .contact-form .ff-errors-in-stack:not(:empty) {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #b0483c;
  margin-block: 12px 2px;
}

.baltika-html-home .contact-form .ff_submit_btn_wrapper {
  margin-top: 6px;
}

.baltika-html-home .contact-form .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: var(--color-dark);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.baltika-html-home .contact-form .ff-btn-submit:hover {
  background: #333330;
}

.baltika-html-home .contact-form .ff-btn-submit:active {
  transform: translateY(1px);
}

/* success confirmation, styled like the retired .form-status note */
.baltika-html-home .contact-form .ff-message-success {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-accent);
  background: transparent;
  border: none;
  box-shadow: none;
  margin: 12px 0 0;
  padding: 0;
}

@media (max-width: 780px) {
  .baltika-html-home .contact-form .fluentform fieldset {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Footer
   ============================================ */

.baltika-html-home .site-footer {
  background: var(--color-dark);
  color: #cfcac2;
}

/* statement zone: large mark + one serif brand line */
.baltika-html-home .footer-statement {
  padding-block: clamp(30px, 2.8vw, 42px) clamp(22px, 2vw, 30px);
}

.baltika-html-home .footer-statement .footer-logo {
  height: clamp(46px, 4vw, 56px);
  width: auto;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

.baltika-html-home .footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.3;
  color: #efeae1;
  max-width: 520px;
}

/* middle zone: showroom takes priority, navigation recedes */
.baltika-html-home .footer-middle {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 100px);
  padding-block: clamp(26px, 2.4vw, 36px);
  border-top: 1px solid var(--color-border-light);
}

.baltika-html-home .footer-showroom h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 1.6vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 4px;
}

.baltika-html-home .footer-appointment {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: #cbb9a4;
  margin-bottom: 12px;
}

.baltika-html-home .footer-contact-lines {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 14.5px;
  color: #d6cfc4;
  line-height: 1.55;
}

.baltika-html-home .footer-contact-lines a {
  display: inline-block;
  padding-block: 2px;
  color: #d6cfc4;
  transition: color 0.2s ease;
}

.baltika-html-home .footer-contact-lines a:hover {
  color: #fff;
}

.baltika-html-home .footer-hours {
  font-size: 13.5px;
  color: #98928a;
  margin-top: 8px;
}

.baltika-html-home .footer-cta {
  margin-top: 18px;
  padding: 12px 24px;
}

/* one nav group, two quiet lists, no micro-headers */
.baltika-html-home .footer-explore {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}

.baltika-html-home .footer-explore ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.baltika-html-home .footer-explore a {
  display: inline-block;
  padding-block: 4px;
  font-size: 14.5px;
  color: #b3ada3;
  transition: color 0.2s ease;
}

.baltika-html-home .footer-explore a:hover {
  color: #fff;
}

/* legal + social live on one quiet bottom rail */
.baltika-html-home .footer-bottom {
  border-top: 1px solid var(--color-border-light);
}

.baltika-html-home .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-block: 14px;
  font-size: 12.5px;
  color: #8a8479;
}

.baltika-html-home .footer-legal {
  display: flex;
  gap: 26px;
}

.baltika-html-home .footer-legal a {
  transition: color 0.2s ease;
}

.baltika-html-home .footer-legal a:hover {
  color: #fff;
}

.baltika-html-home .social-list {
  display: flex;
  gap: 10px;
}

.baltika-html-home .social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-light);
  border-radius: 50%;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.baltika-html-home .social-list svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  transition: fill 0.2s ease;
}

.baltika-html-home .social-list a:hover {
  background: #fff;
  border-color: #fff;
}

.baltika-html-home .social-list a:hover svg {
  fill: var(--color-dark);
}

/* ============================================
   Mobile floating action bar
   ============================================ */

.baltika-html-home .mobile-action-bar {
  display: none;
}

@media (max-width: 640px) {
  /* floating black pill, lifted off the bottom edge */
  .baltika-html-home .mobile-action-bar {
    display: block;
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 90;
  }

  .baltika-html-home .mobile-call-btn {
    width: 100%;
    min-height: 56px;
    gap: 10px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.14em;
    padding: 16px 28px;
    box-shadow: 0 12px 28px -10px rgba(26, 26, 25, 0.45);
  }

  .baltika-html-home .mobile-call-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  /* keep page content and footer clear of the floating pill */
  body.baltika-html-home {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991px) {
  .baltika-html-home .nav-toggle {
    display: flex;
    order: 3;
  }

  .baltika-html-home .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height, 112px));
    height: calc(100dvh - var(--header-height, 112px));
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 18px clamp(24px, 7vw, 48px) 36px;
    gap: 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    overflow-y: auto;
    box-shadow: 0 24px 32px -20px rgba(26, 26, 25, 0.2);
  }

  .baltika-html-home .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* large serif menu links separated by hairlines */
  .baltika-html-home .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .baltika-html-home .primary-nav ul li + li {
    border-top: 1px solid var(--color-border);
  }

  .baltika-html-home .primary-nav ul a {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(27px, 7.5vw, 32px);
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--color-dark);
    padding: 13px 0;
    transition: color 0.2s ease, padding-left 0.25s ease;
  }

  .baltika-html-home .primary-nav ul a::after {
    display: none;
  }

  .baltika-html-home .primary-nav ul a:hover,
.baltika-html-home .primary-nav ul a:focus-visible {
    color: var(--color-accent);
    padding-left: 8px;
  }

  .baltika-html-home .nav-cta {
    align-self: flex-start;
  }

  /* menu links settle in one after another */
  @media (prefers-reduced-motion: no-preference) {
    .baltika-html-home .primary-nav li,
.baltika-html-home .primary-nav .nav-cta {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .baltika-html-home .primary-nav.is-open li,
.baltika-html-home .primary-nav.is-open .nav-cta {
      opacity: 1;
      transform: translateY(0);
    }

    .baltika-html-home .primary-nav.is-open li:nth-child(1) { transition-delay: 0.04s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(2) { transition-delay: 0.08s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(3) { transition-delay: 0.12s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(4) { transition-delay: 0.16s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(5) { transition-delay: 0.2s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(6) { transition-delay: 0.24s; }
    .baltika-html-home .primary-nav.is-open li:nth-child(7) { transition-delay: 0.28s; }
    .baltika-html-home .primary-nav.is-open .nav-cta { transition-delay: 0.32s; }
  }

  body.baltika-html-home.nav-open {
    overflow: hidden;
  }

  .baltika-html-home .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .baltika-html-home .hero-media {
    position: relative;
    inset: auto;
    min-height: 320px;
    order: -1;
  }

  .baltika-html-home .hero-media img {
    object-position: center;
  }

  /* stacked layout: fade the photo's bottom edge into the content panel */
  .baltika-html-home .hero-media::before {
    background: linear-gradient(180deg,
      rgba(245, 241, 234, 0) 72%,
      rgba(245, 241, 234, 0.55) 90%,
      var(--color-cream) 100%);
  }

  .baltika-html-home .elevate {
    grid-template-columns: 1fr;
  }

  .baltika-html-home .elevate-media {
    min-height: 320px;
  }

  .baltika-html-home .final-cta-inner {
    justify-content: center;
  }

  .baltika-html-home .category-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 0;
  }

  .baltika-html-home .category + .category {
    border-left: none;
  }

  .baltika-html-home .style-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .baltika-html-home .contact-inner {
    grid-template-columns: 1fr;
  }

  .baltika-html-home .contact-intro {
    padding-right: 0;
  }

  .baltika-html-home .contact-form {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    margin-top: 30px;
  }

  .baltika-html-home .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }

  .baltika-html-home .feature {
    padding-inline: clamp(20px, 4vw, 32px);
  }

  .baltika-html-home .feature:first-child {
    padding-left: clamp(20px, 4vw, 32px);
  }

  /* in a 2×2 grid only the second column keeps a divider */
  .baltika-html-home .feature + .feature {
    border-left: none;
  }

  .baltika-html-home .feature:nth-child(even) {
    border-left: 1px solid var(--color-border);
  }

  .baltika-html-home .footer-middle {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .baltika-html-home .category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 18px;
  }

  .baltika-html-home .category {
    max-width: none;
    padding-inline: 8px;
  }

  .baltika-html-home .category img {
    width: 112px;
    height: 112px;
    margin-bottom: 16px;
  }

  .baltika-html-home .hero-content h1 {
    font-size: clamp(34px, 10vw, 40px);
  }

  .baltika-html-home .hero-content p {
    font-size: 15px;
  }

  .baltika-html-home .elevate-content h2 {
    font-size: 29px;
  }

  .baltika-html-home .styles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
  }

  .baltika-html-home .style-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* stacked benefit rows: icon left, text right, hairline between rows */
  .baltika-html-home .feature-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .baltika-html-home .feature {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 18px;
    align-items: start;
    text-align: left;
    padding: 18px 0;
  }

  .baltika-html-home .feature:first-child {
    padding-left: 0;
    padding-top: 0;
  }

  .baltika-html-home .feature:nth-child(even) {
    border-left: none;
  }

  .baltika-html-home .feature + .feature {
    border-top: 1px solid var(--color-border);
  }

  .baltika-html-home .feature-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
    grid-row: 1 / 3;
  }

  .baltika-html-home .feature h3 {
    font-size: 12.5px;
    letter-spacing: 0.07em;
    margin-bottom: 4px;
  }

  .baltika-html-home .feature p {
    max-width: none;
  }

  .baltika-html-home .features-cta {
    padding: 40px 24px;
  }

  .baltika-html-home .warranty-lede {
    font-size: 14px;
  }

  .baltika-html-home .final-cta {
    padding-block: 44px 40px;
  }

  .baltika-html-home .final-cta-card {
    padding: 28px 22px;
  }

  .baltika-html-home .final-cta-card h2 {
    font-size: 27px;
  }

  .baltika-html-home .final-cta-card .btn {
    width: 100%;
  }

  .baltika-html-home .appointment-only {
    font-size: 15.5px;
  }

  .baltika-html-home .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .baltika-html-home .appointment-line {
    font-size: 17.5px;
  }

  .baltika-html-home .contact-details li {
    grid-template-columns: 84px 1fr;
    gap: 12px;
  }

  /* intentional mobile footer: statement, showroom priority,
     two-column nav, then a compact social/legal rail */
  .baltika-html-home .footer-statement {
    padding-block: 22px 14px;
  }

  .baltika-html-home .footer-statement .footer-logo {
    height: 40px;
    margin-bottom: 10px;
  }

  .baltika-html-home .footer-tagline {
    font-size: 18px;
  }

  .baltika-html-home .footer-middle {
    padding-block: 18px 20px;
    gap: 18px;
  }

  .baltika-html-home .footer-showroom h3 {
    font-size: 19px;
  }

  .baltika-html-home .footer-appointment {
    font-size: 15.5px;
    margin-bottom: 8px;
  }

  .baltika-html-home .footer-contact-lines {
    font-size: 14px;
    line-height: 1.5;
  }

  .baltika-html-home .footer-hours {
    margin-top: 6px;
  }

  .baltika-html-home .footer-cta {
    width: 100%;
    max-width: 340px;
    margin-top: 14px;
    padding-block: 11px;
  }

  .baltika-html-home .footer-explore a {
    padding-block: 3px;
    font-size: 14px;
  }

  .baltika-html-home .footer-bottom-inner {
    align-items: center;
    gap: 8px 20px;
    padding-block: 12px;
  }

  .baltika-html-home .footer-copy {
    flex-basis: 100%;
    order: 2;
  }

  .baltika-html-home .social-list {
    order: -1;
    gap: 10px;
  }

  .baltika-html-home .social-list a {
    width: 38px;
    height: 38px;
  }
}

/* ============================================
   Reduced motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .baltika-html-home .site-header,
.baltika-html-home .header-inner,
.baltika-html-home .logo img,
.baltika-html-home .primary-nav,
.baltika-html-home .primary-nav ul a,
.baltika-html-home .primary-nav ul a::after,
.baltika-html-home .nav-toggle-bar,
.baltika-html-home .category img,
.baltika-html-home .category h3::after,
.baltika-html-home .style-card img,
.baltika-html-home .style-card h3::after,
.baltika-html-home .view-all,
.baltika-html-home .elevate-media img,
.baltika-html-home .final-cta-media img,
.baltika-html-home .appointment-link,
.baltika-html-home .form-field label {
    transition: none;
  }
}
