/* ============================================
   KING STREET STUDIOS — SIDEBAR STYLESHEET
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   THEME VARIABLES
   Dark scheme is the default (also the fallback
   for browsers that don't support
   prefers-color-scheme at all). The light/navy
   scheme below swaps every value automatically
   when the visitor's OS is set to light mode —
   no toggle, no JS, just a media query.
   ============================================ */

:root {
  --bg-page:        #2C3E50;
  --bg-sidebar:     #141412;
  --bg-mobile-bar:  #141412;
  --bg-hero:        #1a1a18;
  --bg-section-alt: #141412;

  --text-primary:   #F1EFE8;
  --text-muted:     #5F5E5A;
  --text-divider:   #2C2C2A;

  --accent:         #C4622D;
  --accent-hover:   #A8501E;
  --accent-on:      #F5ECD7; /* text colour sitting on top of the accent fill */
}

@media (prefers-color-scheme: light) {
  :root {
    --bg-page:        #E4D4B4;
    --bg-sidebar:     #F5ECD7;
    --bg-mobile-bar:  #F5ECD7;
    --bg-hero:        #F5ECD7;
    --bg-section-alt: #EDE0C8;

    --text-primary:   #1B2A3B;
    --text-muted:     #5A6E82;
    --text-divider:   #C4B898;

    --accent:         #C4622D;
    --accent-hover:   #A8501E;
    --accent-on:      #F5ECD7;
  }
}

body {
  background: var(--bg-page);
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
}

/* ============================================
   DESKTOP SIDEBAR
   ============================================ */

.sidebar {
  width: 220px;
  min-width: 220px;
  background: var(--bg-sidebar);
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  height: 100vh;
  position: sticky;
  top: 0;
  border-right: 1px solid var(--text-divider);
}

/* Wordmark block */
.logo-block {
  margin-bottom: 64px;
}

/* Nav */
.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
}
.nav-item .nav-marker {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.15s;
}
.nav-item.active {
  color: var(--text-primary);
}
.nav-item.active .nav-marker {
  background: var(--accent);
}
.nav-item:hover {
  color: var(--text-primary);
}

.nav-divider {
  height: 0.5px;
  background: var(--text-divider);
  margin: 24px 0;
}

/* Socials row */
.socials {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.social-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.15s;
}
.social-icon:hover {
  color: var(--accent);
}

/* CTA */
.sidebar-cta {
  background: var(--accent);
  border: 0.5px solid var(--accent);
  color: var(--accent-on);
  font-size: 9px;
  letter-spacing: 2.5px;
  padding: 13px 0;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.sidebar-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* ============================================
   MOBILE TOP BAR (hidden on desktop)
   ============================================ */

.mobile-bar {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 1px;
}

/* ============================================
   ANIMATED WORDMARK (sidebar)
   Plays once on load, then holds. Respects
   prefers-reduced-motion. Sized for the
   ~220px sidebar column.
   ============================================ */

.kss-wordmark {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: transparent;
}

.kss-wordmark .kss-bar {
  width: 3px;
  height: 50px;
  border-radius: 2px;
  background: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  transform-origin: top center;
  animation: kss-bar-grow 0.775s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.kss-wordmark .kss-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 2px;
}

.kss-wordmark .kss-line {
  display: block;
  animation: kss-wipe 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.kss-wordmark .kss-line-1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--text-primary);
  line-height: 1.25;
  animation-delay: 0.55s;
}

.kss-wordmark .kss-line-2 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 8px;
  letter-spacing: 6px;
  color: var(--accent);
  margin-top: 4px;
  animation-delay: 0.825s;
}

.kss-wordmark .kss-line-3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-top: 10px;
  animation-delay: 1.075s;
}

@keyframes kss-bar-grow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes kss-wipe {
  from { clip-path: inset(0 100% 0 0); opacity: 0.3; transform: translateX(-6px); }
  to   { clip-path: inset(0 0 0 0);    opacity: 1;   transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .kss-wordmark .kss-bar,
  .kss-wordmark .kss-line {
    animation: none !important;
  }
}

/* ============================================
   MAIN CONTENT — section placeholders
   Each section is a full-viewport-height block so
   the page structure and nav anchors can be seen
   and scrolled through before real content is
   written. Alternates background slightly so each
   section reads as distinct.
   ============================================ */

.main {
  flex: 1;
}

.section {
  min-height: 100vh;
  background: var(--bg-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px;
  border-bottom: 0.5px solid var(--text-divider);
  scroll-margin-top: 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

.section-tag {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  display: block;
  min-height: auto;
  padding: 80px 64px;
  background: #1B2A3B;
  border-bottom: 0.5px solid #243548;
}

.services-header {
  max-width: 560px;
  margin-bottom: 60px;
}

.services-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: #F5ECD7;
  margin: 14px 0 16px;
  line-height: 1.15;
}

.services-intro {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #5A6E82;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #243548;
  border: 1px solid #243548;
}

.service-card {
  background: #1B2A3B;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.15s;
}

.service-card:hover {
  background: #162233;
}

.service-icon {
  color: #C4622D;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #F5ECD7;
  line-height: 1.2;
}

.service-desc {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #5A6E82;
  flex: 1; /* pushes the link wrapper to the bottom */
}

.service-link-wrap {
  margin-top: auto;
  padding-top: 4px;
}

.service-link {
  color: #C4622D;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.service-link:hover {
  text-decoration: underline;
}

.section-tag {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
}

/* Tablet — 2 columns */
@media (max-width: 1024px) {
  .services-section {
    padding: 60px 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 column */
@media (max-width: 768px) {
  .services-section {
    padding: 48px 24px;
  }
  .services-header {
    margin-bottom: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px 24px;
  }
}

/* ============================================
   HERO — "Where great records are made."
   Full-bleed background slideshow with the
   headline overlaid. Slideshow currently shows
   styled placeholder frames in place of real
   photography — swap the background-image on
   each .hero-slide when photos are ready; the
   slideshow mechanics (timing, dots, arrows)
   need no changes.
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 0.5px solid var(--text-divider);
  scroll-margin-top: 0;
}

/* Slideshow layer — slides are stacked and crossfade between each other */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

/* Placeholder frame standing in for real photography. Deliberately
   styled to look like a placeholder (not a fake photo), so it's
   obvious to anyone editing this site that a real image belongs here. */
.hero-slide-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, rgba(196, 98, 45, 0.06) 0px, rgba(196, 98, 45, 0.06) 2px, transparent 2px, transparent 14px),
    var(--bg-section-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-placeholder span {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  border: 0.5px solid var(--text-divider);
  padding: 8px 16px;
}

/* Real photo slides — fills the frame and crops to whatever shape
   the viewport gives it, never stretching or squashing. This is the
   rule that makes "shoot wide, don't worry about exact ratio" work. */
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Dark gradient between the slideshow and the headline, so text stays
   legible against any photo regardless of its own brightness/colour. */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10, 9, 8, 0.55) 0%,
    rgba(10, 9, 8, 0.32) 38%,
    rgba(10, 9, 8, 0.1) 65%,
    rgba(10, 9, 8, 0) 100%
  );
}

/* Headline content, sat above both the slideshow and the overlay */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 64px;
}

.hero-tag {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: #F1EFE8; /* fixed light colour — the hero always sits on a dark photo/overlay regardless of site theme */
  margin-bottom: 22px;
}

.hero-sub {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(241, 239, 232, 0.75);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 14px 26px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.hero-btn-primary {
  background: var(--accent);
  color: var(--accent-on);
  border: 0.5px solid var(--accent);
}
.hero-btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.hero-btn-secondary {
  background: transparent;
  color: #F1EFE8;
  border: 0.5px solid rgba(241, 239, 232, 0.4);
}
.hero-btn-secondary:hover {
  border-color: #F1EFE8;
}

/* Arrow controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(241, 239, 232, 0.35);
  background: rgba(10, 9, 8, 0.3);
  color: #F1EFE8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.hero-arrow:hover {
  background: rgba(10, 9, 8, 0.55);
  border-color: rgba(241, 239, 232, 0.7);
}
.hero-arrow-prev { left: 28px; }
.hero-arrow-next { right: 28px; }

/* Dot controls */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 64px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.5px solid rgba(241, 239, 232, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}
.hero-dot:hover {
  border-color: #F1EFE8;
}

/* ============================================
   RESPONSIVE — TABLET (narrower sidebar)
   ============================================ */

@media (max-width: 1024px) {
  .sidebar {
    width: 180px;
    min-width: 180px;
    padding: 28px 22px;
  }
  .logo-block {
    margin-bottom: 48px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (collapsed sidebar)
   ============================================ */

@media (max-width: 768px) {

  body {
    flex-direction: column;
  }

  /* Show the mobile top bar */
  .mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-mobile-bar);
    padding: 18px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo-mark-mobile {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .logo-bar-mobile {
    width: 3px;
    height: 44px;
    background: var(--accent);
    border-radius: 2px;
  }
  .logo-text-mobile {
    padding-left: 2px;
  }
  .king-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    line-height: 1;
  }
  .studios-mobile {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--accent);
    margin-top: 4px;
  }

  /* Sidebar becomes a slide-down/overlay panel, hidden by default */
  .sidebar {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.25s ease, padding 0.25s ease;
    z-index: 99;
  }

  .sidebar.open {
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 28px 24px;
  }

  /* Hide the desktop logo block inside sidebar on mobile (shown in top bar instead) */
  .logo-block {
    display: none;
  }

  .nav {
    gap: 8px;
  }

  .nav-item {
    font-size: 12px;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--text-divider);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-divider {
    margin: 20px 0;
  }

  .socials {
    margin-bottom: 24px;
  }

  .sidebar-cta {
    padding: 16px 0;
    font-size: 10px;
  }

  .section {
    min-height: 80vh;
    padding: 48px 28px;
    text-align: center;
    scroll-margin-top: 64px;
  }

  .hero {
    min-height: 90vh;
    scroll-margin-top: 64px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 24px;
    margin-bottom: 88px;
    max-width: 100%;
  }

  .hero-headline {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    text-align: center;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }
  .hero-arrow-prev { left: 16px; }
  .hero-arrow-next { right: 16px; }

  .hero-dots {
    left: 24px;
    bottom: 20px;
  }
}

/* ============================================
   GEAR LIST MODAL — cream background
   ============================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 9, 8, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #F5ECD7;
  border: 0.5px solid #C4B898;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 48px;
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #5A6E82;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}

.modal-close:hover {
  color: #1B2A3B;
}

.modal-tag {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: #C4622D;
  margin: 0 0 12px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: #1B2A3B;
  margin: 0 0 8px;
  line-height: 1.2;
}

.modal-sub {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #5A6E82;
  margin: 0 0 20px;
}

.modal-key {
  background: #EDE0C8;
  border: 0.5px solid #C4B898;
  padding: 12px 16px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modal-key p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #1B2A3B;
  margin: 0;
  line-height: 1.5;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.gear-category {
  border-top: 0.5px solid #C4B898;
  padding-top: 20px;
}

.gear-cat-title {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: #C4622D;
  margin: 0 0 12px;
}

.gear-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gear-list li {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #1B2A3B;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.gear-list li.gear-wishlist {
  color: #5A6E82;
}

.gear-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 1px;
  background: #C4622D;
}

.gear-wish {
  color: #C4622D;
  font-size: 12px;
  font-weight: 700;
}

.gear-footnote {
  border-top: 0.5px solid #C4B898;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gear-footnote p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #5A6E82;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .modal {
    padding: 32px 24px;
    max-height: 90vh;
  }
}

/* ============================================
   CONTACT SECTION
   Two-column on desktop (details left, form
   right), stacks on mobile. Uses theme variables
   so it adapts to light/dark like the rest of
   the site. Submits to the Railway form catcher
   via contact-form.js.
   ============================================ */

.contact-section {
  display: block;
  min-height: auto;
  padding: 80px 64px;
  background: var(--bg-hero);
  border-bottom: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: 1000px;
}

.contact-header {
  max-width: 380px;
}

.contact-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--text-primary);
  margin: 14px 0 16px;
  line-height: 1.15;
}

.contact-intro {
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-detail-link,
.contact-detail-text {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.contact-detail-link:hover {
  color: var(--accent);
}

/* Form */
.contact-form {
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.field label {
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
}

.field-optional {
  color: var(--text-divider);
}

.field input,
.field textarea {
  background: var(--bg-section-alt);
  border: 0.5px solid var(--text-divider);
  color: var(--text-primary);
  font-family: Arial, sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field input.has-error,
.field textarea.has-error {
  border-color: var(--accent);
  background: rgba(196, 98, 45, 0.06);
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field-error {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: var(--accent);
  display: none;
}
.field-error.is-visible {
  display: block;
}

.form-submit {
  background: var(--accent);
  border: 0.5px solid var(--accent);
  color: var(--accent-on);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  padding: 16px 32px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  width: 100%;
  margin-top: 8px;
}
.form-submit:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  margin-top: 20px;
  padding: 14px 16px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(196, 98, 45, 0.1);
  border: 0.5px solid var(--accent);
  color: var(--text-primary);
}
.form-status.is-error {
  display: block;
  background: rgba(196, 98, 45, 0.06);
  border: 0.5px solid var(--accent);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 60px 40px;
  }
  .contact-inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 48px 24px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-header {
    max-width: 100%;
  }
}
