/* ============================================
   SPECTRAL — Coffee Concept Studio
   ============================================ */

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

@font-face {
  font-family: 'Styrene A';
  src: url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.eot');
  src: url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.eot?#iefix') format('embedded-opentype'),
       url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.woff2') format('woff2'),
       url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.woff') format('woff'),
       url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.ttf') format('truetype'),
       url('https://db.onlinewebfonts.com/t/819f612977ba7ba86c14b739b908c73f.svg#Styrene A') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Untitled Sans';
  src: url('assets/fonts/TestUntitledSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Untitled Sans';
  src: url('assets/fonts/TestUntitledSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --gray-dark: #4E4E4E;
  --gray-mid: #999999;
  --gray-form-border: #a2a2a2;
  --gray-form-placeholder: #e2e2e2;
  --border: rgba(0, 0, 0, 0.1);
  --font-sans: 'Untitled Sans', -apple-system, Helvetica Neue, sans-serif;
  --font-display: 'Styrene A', 'Untitled Sans', sans-serif;
  --nav-height: 64px;
}

html {
  font-size: 16px;
  height: 100%;
  min-height: 100%;
  min-height: 100dvh;
  /* iOS Safari: use fill-available so body can fill the screen */
  min-height: -webkit-fill-available;
}

body {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 16px;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  min-height: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Fixed hero background layer: avoids white flash before sections; hidden once in accordion */
.hero-bg-fixed {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: url('assets/hero_bg.png') no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

.hero-bg-fixed.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---- Navigation ---- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: var(--nav-height);
  background: transparent;
  transition: background 0.4s ease;
}

.nav.nav-scrolled {
  background: var(--white);
}

.nav-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color 0.4s ease;
}

.nav.nav-scrolled .nav-label {
  color: var(--black);
}

.nav-logo {
  position: relative;
}

.nav-logo img {
  height: 11px;
  width: auto;
}

.nav-logo .nav-logo-dark {
  display: none;
}

.nav-logo .nav-logo-light {
  display: block;
}

.nav.nav-scrolled .nav-logo .nav-logo-dark {
  display: block;
}

.nav.nav-scrolled .nav-logo .nav-logo-light {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  grid-column: 3;
  grid-row: 1;
}

.nav-burger {
  grid-row: 1;
  justify-self: end;
}

.nav-links {
  justify-self: end;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--white);
  transition: color 0.4s ease, opacity 0.3s, background 0.4s ease, border-color 0.4s ease;
}

.nav.nav-scrolled .nav-links a {
  color: var(--black);
}

.nav-links a:not(.nav-cta):hover {
  opacity: 0.5;
}

.nav-links a.nav-cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  transition: none;
}

.nav.nav-scrolled .nav-links a.nav-cta {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* Burger: hidden on desktop, same grid cell as nav-links */
.nav-burger {
  display: none;
  grid-column: 3;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

.nav-burger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: var(--white);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-menu-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}

.nav-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.25rem;
}

.nav-menu-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--black);
}

.nav-menu-cta {
  align-self: flex-start;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* ---- Hero (spacer for phase 1; image is .hero-bg-fixed) ---- */
.hero {
  position: relative;
  /* height set by JS */
}

/* ---- Sections Track (scroll-driven) ---- */

.sections-track {
  position: relative;
  z-index: 1;
  background: transparent;
}

.sections-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.sections-sticky.accordion-active {
  justify-content: stretch;
  background: transparent;
}

/* Background image anchored to the bottom, shown when accordion (no fade) */
.sections-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}

.sections-sticky.accordion-active .sections-bg {
  opacity: 1;
  background: var(--white);
}

.sections-bg img {
  max-width: 30%;
  height: auto;
  object-fit: contain;
}

/* Sections list */
.sections-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 0 2.5rem;
  padding-bottom: 2rem;
}

/* Phase 1: list fixed at bottom of viewport over the hero (text/lines only) */
.sections-list.phase1 {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  pointer-events: auto;
}

.sections-list.phase1 .row-header::after {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.sections-list.phase1 .row-header-cell::before {
  border-left-color: rgba(255, 255, 255, 0.3);
}

.sections-list.phase1 .row-number,
.sections-list.phase1 .row-title,
.sections-list.phase1 .row-desc {
  color: var(--white);
}

.sections-sticky.accordion-active .sections-list {
  flex: 1;
  padding-top: var(--nav-height);
  padding-bottom: 0;
  /* White only for top strip (under nav); rest transparent so .sections-bg image is visible */
  background: linear-gradient(to bottom, var(--white) 0, var(--white) var(--nav-height), transparent var(--nav-height));
}

/* When a row is open, grey out previous rows' number, title and desc */
.sections-sticky.accordion-active .section-row:not(.open) .row-number,
.sections-sticky.accordion-active .section-row:not(.open) .row-title,
.sections-sticky.accordion-active .section-row:not(.open) .row-desc {
  color: var(--gray-mid);
}

.sections-sticky.accordion-active .section-row.open ~ .section-row .row-number,
.sections-sticky.accordion-active .section-row.open ~ .section-row .row-title,
.sections-sticky.accordion-active .section-row.open ~ .section-row .row-desc {
  color: var(--black);
}

/* ---- Section Rows ---- */

.section-row {
  background: transparent;
  flex: 0 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-row.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Phase 2: active section fills viewport */
.sections-sticky.accordion-active .section-row.open {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sections-sticky.accordion-active .section-row.open .row-content {
  flex: 1;
  max-height: none;
  overflow-y: auto;
}

/* Row header: same border style as form (number | vertical line | title + desc) */
.row-header {
  display: flex;
  align-items: stretch;
  position: relative;
  padding: 16px 0;
  min-height: 32px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.row-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--gray-form-border);
  pointer-events: none;
}

.row-header:hover {
  opacity: 0.5;
}

.row-number {
  width: 106px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--gray-dark);
}

.row-header-cell {
  flex: 1 0 0;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
}

/* Vertical divider: extend past cell into padding so it meets row bottom border */
.row-header-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -15px;
  border-left: 1px solid var(--gray-form-border);
  pointer-events: none;
}

.row-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--black);
}

.row-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--black);
  text-align: right;
}

/* ---- Accordion Content ---- */

.row-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-row.open .row-content {
  max-height: 1200px;
}

.row-content-inner {
  padding: 0;
  max-width: 500px;
}

/* Section 1 – Vision: vertically centered, aligned to left of screen */
.sections-list > .section-row:nth-of-type(1).open .row-content {
  display: flex;
  align-items: center;
}

.sections-list > .section-row:nth-of-type(1) .row-content-inner {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* Section 2 – Mission: vertically centered, aligned to right of screen */
.sections-list > .section-row:nth-of-type(2).open .row-content {
  display: flex;
  align-items: center;
}

.sections-list > .section-row:nth-of-type(2) .row-content-inner {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

/* Section 3 – Process: title left; two columns – left: Discover + Define, right: Design + Deploy (Design level with Discover) */
.sections-list > .section-row:nth-of-type(3) .row-content {
  display: flex;
  align-items: center;
}

.sections-list > .section-row:nth-of-type(3) .row-content-inner {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.sections-list > .section-row:nth-of-type(3) .row-content-inner h2 {
  text-align: left;
  margin-bottom: 0;
  max-width: 500px;
}

.sections-list > .section-row:nth-of-type(3) .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: 2rem 4rem;
  align-items: start;
  width: 100%;
}

.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(1),
.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(2) {
  text-align: left;
}

.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(3),
.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(4) {
  text-align: right;
}

.sections-list > .section-row:nth-of-type(3) .process-item {
  max-width: 550px;
}

.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(3),
.sections-list > .section-row:nth-of-type(3) .process-item:nth-of-type(4) {
  margin-left: auto;
}

/* Section 4 – Centered */
.sections-list > .section-row:nth-of-type(4) .row-content {
  display: flex;
  align-items: center;
}

.sections-list > .section-row:nth-of-type(4) .row-content-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.sections-list > .section-row:nth-of-type(4) .row-content-inner .btn {
  margin-top: auto;
  flex-shrink: 0;
}

.row-content-inner h2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: var(--gray-dark);
}

.row-content-inner p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 16px;
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

.row-content-inner p:last-child {
  margin-bottom: 0;
}

.row-content-inner .btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ---- Process Grid ---- */

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

.process-item h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  color: var(--gray-dark);
}

.process-item p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 16px;
  color: var(--gray-dark);
}

/* ---- Buttons ---- */

.btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  padding: 8px 12px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  width: auto;
  display: inline-block;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ---- Footer ---- */

.footer {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 10rem 2.5rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  margin: 0;
}

.footer-logo img {
  height: 9px;
  width: auto;
}

.footer-brand p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--gray-mid);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}

.footer-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.footer-letter {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--gray-mid);
  flex-shrink: 0;
  width: 1.2em;
}

.footer-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--gray-dark);
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.5;
}

/* ---- Modal ---- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.97);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  width: 90%;
  max-width: 676px;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--black);
  padding: 0.5rem 0 1rem 0;
  transition: opacity 0.3s;
  line-height: 16px;
  z-index: 210;
}

.modal-close:hover {
  opacity: 0.4;
}

.modal {
  width: 90%;
  max-width: 676px;
  max-height: 75vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

/* ---- Booking form (designer table layout) ---- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 833px;
  margin-left: auto;
  margin-right: 0;
}

.form-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-accordion-row {
  position: relative;
  flex-shrink: 0;
  width: 100%;
}

.form-accordion-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--gray-form-border);
  pointer-events: none;
}

.form-accordion-row-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 32px;
}

.form-accordion-row.form-row-split .form-accordion-row-inner {
  display: flex;
  gap: 0;
}

.form-field-left {
  display: flex;
  flex: 1 0 0;
  min-height: 32px;
  min-width: 0;
  align-items: stretch;
  justify-content: space-between;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--gray-dark);
  flex-shrink: 0;
  width: 106px;
  display: flex;
  align-items: center;
}

.form-cell {
  flex: 1 0 0;
  min-height: 32px;
  min-width: 0;
  position: relative;
}

.form-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 1px solid var(--gray-form-border);
  pointer-events: none;
}

.form-cell-inner {
  display: flex;
  align-items: center;
  padding-left: 16px;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 32px;
}

.form-field-left + .form-field-left .form-cell::before {
  border-left: 1px solid var(--gray-form-border);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--black);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(226, 226, 226, 0.93);
}

.booking-form select {
  cursor: pointer;
  color: var(--gray-form-placeholder);
}

.booking-form select:valid:not([value=""]) {
  color: var(--black);
}

.booking-form select option {
  color: var(--black);
}

.booking-form select option[value=""] {
  color: var(--gray-form-placeholder);
}

.booking-form textarea {
  resize: none;
  min-height: 32px;
  vertical-align: middle;
}

/* Message: label above full-width box (not a table row) */
.form-message-block {
  width: 100%;
}

.form-message-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.42px;
  line-height: 1.35;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.form-message-box {
  width: 100%;
  border: 1px solid var(--gray-form-border);
  border-radius: 2px;
  padding: 12px 16px;
  min-height: 120px;
}

.form-message-box textarea {
  display: block;
  width: 100%;
  min-height: 96px;
  resize: vertical;
  vertical-align: top;
}

.booking-form .btn {
  margin-top: 2rem;
  align-self: flex-start;
}

/* ---- Cursor Glow (desktop only) ---- */

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .nav {
    padding: 0 1.25rem;
    height: 52px;
    --nav-height: 52px;
  }

  .nav-label {
    display: none;
  }

  .nav-logo {
    grid-column: 2;
    justify-self: center;
  }

  .nav-links {
    display: none;
  }

  .sections-bg img {
    max-width: 60%;
  }

  .sections-list {
    padding: 0 1.5rem;
    padding-bottom: 1.5rem;
  }

  .sections-sticky.accordion-active .sections-list {
    padding-top: 52px;
  }

  .row-header {
    padding: 1rem 0;
  }

  .row-number {
    width: 2.5rem;
  }

  .row-desc {
    font-size: 13px;
  }

  .row-content-inner {
    padding: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* When row 3 (Process) is open on phone, show content as 2x2 grid */
  .sections-list > .section-row:nth-of-type(3).open .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .sections-list > .section-row:nth-of-type(3).open .process-item {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }

  .form-accordion-row.form-row-split .form-accordion-row-inner {
    flex-wrap: wrap;
  }

  .form-accordion-row.form-row-split .form-field-left {
    flex: 1 1 100%;
  }

  .form-label {
    width: 90px;
  }

  .modal-overlay {
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem;
  }

  .modal-close {
    width: 100%;
    max-width: none;
    padding: 0.25rem 0 0.75rem 0;
    font-size: 14px;
    flex-shrink: 0;
  }

  .modal {
    width: 100%;
    max-width: none;
    max-height: none;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .booking-form {
    flex: 1;
    justify-content: space-between;
    max-width: none;
  }

  .form-accordion-list {
    padding: 12px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 13px;
  }

  .form-label {
    font-size: 13px;
    width: 80px;
  }

  .booking-form textarea {
    min-height: 40px;
  }

  .booking-form .btn {
    margin-top: 1rem;
    padding: 8px 12px;
  }

  .footer {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .footer-contact {
    align-items: flex-start;
    margin-left: 0;
  }
}
