* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #2e2922;
  background: #faf8f3;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  background: linear-gradient(180deg, #e4d3b7 0%, #efe4d2 100%);
  color: #2e2922;
  min-height: 75vh;
  padding-top: 110px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(46, 41, 34, 0.95);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-size: 1.25rem;
  font-weight: bold;
  color: #e4d3b7;
}

.brand-with-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: auto;
  display: block;
}

.small-logo {
  height: 42px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #f7f1e7;
  text-decoration: none;
  font-weight: 500;
}

.hero-content {
  padding: 4rem 0 2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
  color: #2e2922;
}

.hero-text p {
  max-width: none;
  width: 100%;
  color: #3f382f;
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: absolute;
  width: 76%;
  height: 76%;
  background: #000;
  border-radius: 24px;
  transform: rotate(-4deg);
  box-shadow: 0 16px 40px rgba(46, 41, 34, 0.22);
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 76%;
  max-width: 360px;
  border-radius: 20px;
  transform: rotate(3deg);
  box-shadow: 0 18px 40px rgba(46, 41, 34, 0.22);
  display: block;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #f4ede3;
}

.cards,
.pricing-grid,
.agb-grid {
  display: grid;
  gap: 1.2rem;
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 2rem 0;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid,
.agb-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 2rem 0;
}

.card,
.price-box,
.extras-box,
.booking-calendar-panel,
.booking-form-panel,
.contact-box,
.location-card {
  background: #fffdf9;
  border: 1px solid #ddd0bb;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(46, 41, 34, 0.06);
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #2e2922;
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 0.9rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #2e2922;
  color: #f6efe5;
}

.btn-primary:hover {
  background: #433c33;
}

.btn-secondary {
  background: #e4d3b7;
  color: #2e2922;
}

.btn-full {
  width: 100%;
}

.booking-header {
  display: block;
  margin-bottom: 1.5rem;
  padding-right: 470px;
  position: relative;
}

.booking-header-text {
  max-width: none;
  width: 100%;
}

.floating-actions {
  position: fixed;
  top: 150px;
  right: 24px;
  z-index: 1100;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.floating-cta {
  min-width: 220px;
  max-width: 260px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(46, 41, 34, 0.14);
  white-space: nowrap;
}

.price-floating-box {
  min-width: 220px;
  max-width: 260px;
  min-height: 92px;
  background: #2e2922;
  color: #f6efe5;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(46, 41, 34, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-floating-label {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.price-floating-value {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.booking-calendar-wrapper {
  width: 100%;
}

.full-width-calendar {
  width: 100%;
}

.booking-details-section {
  margin-top: 2rem;
}

.full-width-form {
  width: 100%;
}

.calendar-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calendar-header-bar h3 {
  margin: 0;
  text-align: center;
  flex: 1;
  color: #2e2922;
}

.calendar-nav-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  background: #2e2922;
  color: #f6efe5;
  font-size: 1.4rem;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legend-color {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-right: 0.4rem;
  vertical-align: middle;
}

.legend-color.free {
  background: #e9f9ee;
  border: 1px solid #8fd19e;
}

.legend-color.busy {
  background: #e96b6b;
}

.legend-color.too-early {
  background: #cfcfcf;
}

.legend-color.weekend {
  background: #cdeed8;
}

.legend-color.selected {
  background: #1f8f4e;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-align: center;
  font-size: 0.9rem;
  color: #2e2922;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.day {
  min-height: 72px;
  padding: 0.6rem;
  border: 1px solid #d9ccb8;
  border-radius: 0.75rem;
  cursor: pointer;
  user-select: none;
  text-align: center;
  font-size: 0.95rem;
  background: #fffdf9;
  transition: all 0.2s ease;
  color: #2e2922;
}

.day:hover:not(:disabled) {
  transform: translateY(-1px);
}

.day.empty {
  visibility: hidden;
}

.day.busy {
  background: #f6b5b5;
  border-color: #d65b5b;
  color: #7d1f1f;
  cursor: not-allowed;
  opacity: 1;
}

.day.too-early {
  background: #e3e3e3;
  border-color: #b9b9b9;
  color: #666;
  cursor: not-allowed;
  opacity: 1;
}

.day.free {
  background: #f4fff6;
  border-color: #9ed4aa;
  color: #1f4f2d;
}

.day.selected {
  background: #1f8f4e;
  border-color: #166a39;
  color: white;
  outline: 2px solid #14592f;
}

.day.weekend-free {
  background: #dff6e7;
  border-color: #87c99d;
  color: #1f4f2d;
}

.day.weekend-busy {
  background: #f3b4b4;
  border-color: #d65b5b;
  color: #7d1f1f;
  cursor: not-allowed;
  opacity: 1;
}

.day.weekend-selected {
  background: #197c44;
  border-color: #14592f;
  color: white;
  outline: 2px solid #14592f;
}

.day-number {
  font-weight: bold;
}

.booking-hint {
  font-size: 0.95rem;
  color: #5a534b;
}

.selected-dates-box {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2d7c7;
}

.selected-item {
  background: #f3ede4;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group.small {
  max-width: 140px;
}

.form-group label,
.price-summary label {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.input-hint {
  margin-top: 0.35rem;
  color: #6d675f;
  font-size: 0.86rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid #d6c9b5;
  border-radius: 10px;
  font-size: 1rem;
  background: #fffefb;
  color: #2e2922;
}

fieldset {
  border: 1px solid #e0d4c2;
  border-radius: 12px;
  padding: 1rem;
  margin: 1.2rem 0;
}

legend {
  font-weight: bold;
  padding: 0 0.4rem;
}

.checkbox-row,
.radio-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.checkbox-row input,
.radio-row input {
  width: auto;
}

.print-highlight-box {
  margin: 1rem 0;
  padding: 1rem;
  border: 2px solid #c7b18d;
  border-radius: 12px;
  background: #f8f2e9;
}

.delivery-choice-group {
  margin: 1rem 0;
  padding: 0.8rem;
  border: 1px solid #e3d7c7;
  border-radius: 12px;
  background: #faf6ef;
}

.delivery-choice-title {
  font-weight: bold;
  margin-bottom: 0.7rem;
}

.conditional-box {
  margin: 0.8rem 0 1rem;
  padding: 0.9rem;
  border-radius: 12px;
  background: #faf6ef;
  border: 1px solid #e3d7c7;
}

.pickup-info {
  margin-top: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #f4ead7;
  color: #6f5200;
  border: 1px solid #dbc49a;
  font-size: 0.95rem;
}

.delivery-box {
  margin: 1.2rem 0;
  padding: 1rem;
  background: #faf6ef;
  border: 1px solid #e7dccd;
  border-radius: 12px;
}

.delivery-actions {
  margin: 0.75rem 0 1rem;
}

.delivery-estimate-msg {
  margin-top: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #f4ead7;
  color: #6f5200;
  border: 1px solid #dbc49a;
}

.price-summary {
  margin: 1rem 0 1.2rem;
}

.booking-message {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  min-height: 22px;
  white-space: pre-line;
}

.booking-message.success {
  background: #ede6db;
  color: #2e2922;
  border: 1px solid #cdbda4;
}

.booking-message.error {
  background: #f3d6d6;
  color: #6b2d2d;
  border: 1px solid #d3aaaa;
}

.booking-message.info {
  background: #eee5d8;
  color: #4a4037;
  border: 1px solid #d9ccb8;
}

.image-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.image-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-photo-card {
  background: #fffdf9;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(46, 41, 34, 0.08);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 41, 34, 0.12);
}

.preview-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f8f2e8;
  display: block;
  padding: 0.5rem;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 41, 34, 0.78);
}

.image-lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 90vh;
  padding: 1rem;
}

.image-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 16px;
  background: white;
}

.image-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: white;
  color: #2e2922;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(46, 41, 34, 0.18);
}

.process-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 160px;
  background: #fffdf9;
  border: 1px solid #e2d7c7;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(46, 41, 34, 0.04);
  text-align: center;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #2e2922;
  color: #f6efe5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.process-arrow {
  align-self: center;
  font-size: 1.4rem;
  color: #8b8173;
  padding: 0 0.25rem;
}

.map-section {
  margin: 2rem 0;
}

.map-embed.full-width-map iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(46, 41, 34, 0.08);
}

.location-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.location-cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card h3 {
  margin-top: 0;
}

.location-card a {
  color: #2e2922;
  font-weight: bold;
  text-decoration: none;
}

.contact-box {
  text-align: center;
  padding: 2rem;
}

.contact-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-logo-large {
  width: min(200px, 50vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(46, 41, 34, 0.12));
}

.contact-mail a {
  font-size: 1.3rem;
  font-weight: bold;
  color: #2e2922;
  text-decoration: none;
}

.contact-note {
  margin-top: 1rem;
  color: #5f584f;
}

.hidden {
  display: none !important;
}

.footer {
  padding: 2rem 0;
  background: #2e2922;
  color: #f6efe5;
  text-align: center;
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    margin-top: 2rem;
    min-height: 320px;
  }

  .floating-actions {
    right: 16px;
  }

  .booking-header {
    padding-right: 450px;
  }
}

@media (max-width: 900px) {
  .cards-3,
  .location-cards-3,
  .image-grid-3 {
    grid-template-columns: 1fr;
  }

  .booking-header {
    display: flex;
    flex-direction: column;
    padding-right: 0;
  }

  .floating-actions {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .floating-cta,
  .price-floating-box {
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .hero {
    padding-top: 100px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    display: none;
  }

  .preview-image {
    height: 200px;
  }

  .hero-image {
    max-width: 320px;
  }

  .contact-logo-large {
    width: min(160px, 55vw);
  }
}