:root {
  --ink: #111418;
  --muted: #66717e;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: rgba(18, 22, 27, 0.12);
  --charcoal: #15191f;
  --red: #c5252c;
  --red-dark: #971820;
  --teal: #167a7f;
  --gold: #c9953f;
  --shadow: 0 22px 70px rgba(15, 18, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 146px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

nav a:hover {
  color: #fff;
}

.language-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  min-width: 116px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  padding: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.toggle-option {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.toggle-option.active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: 1;
  object-fit: contain;
  object-position: right center;
  opacity: 0.24;
  padding: clamp(120px, 12vw, 180px) clamp(24px, 7vw, 92px) clamp(48px, 8vw, 100px);
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(125deg, rgba(197, 37, 44, 0.28), transparent 38%),
    radial-gradient(circle at 78% 36%, rgba(22, 122, 127, 0.42), transparent 34%),
    linear-gradient(135deg, #111418 0%, #242b34 52%, #d9d1c6 52%, #f2eee6 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.9) 0%, rgba(5, 8, 12, 0.68) 38%, rgba(5, 8, 12, 0.12) 72%),
    linear-gradient(0deg, rgba(5, 8, 12, 0.58), rgba(5, 8, 12, 0.08) 45%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 74px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2.2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.submit-button,
.service-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}

.primary,
.submit-button {
  color: #fff;
  background: var(--red);
}

.primary:hover,
.submit-button:hover {
  background: var(--red-dark);
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.17);
}

.quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -54px auto 0;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
  background: var(--line);
}

.quick-bar div {
  min-height: 108px;
  padding: 24px;
  background: var(--panel);
}

.quick-bar strong,
.quick-bar span {
  display: block;
}

.quick-bar strong {
  font-size: 20px;
}

.quick-bar span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.booking-section,
.confirmation,
.contact-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 86px 0 54px;
}

.shop-section {
  padding-top: 86px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.shop-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 20px;
  align-items: end;
}

.shop-intro {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: 0;
}

.shop-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-card,
.service-card {
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  box-shadow: 0 16px 44px rgba(15, 18, 22, 0.08);
}

.shop-card {
  display: grid;
  gap: 18px;
  border-top-color: var(--gold);
}

.service-card.accent {
  border-top-color: var(--teal);
}

.shop-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.shop-chip {
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--red-dark);
  background: #f4e4cf;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-price {
  margin: 6px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.shop-price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.shop-description {
  margin: 0;
  color: var(--muted);
}

.shop-controls {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.shop-quantity {
  display: grid;
  gap: 8px;
}

.shop-quantity label {
  font-size: 13px;
}

.shop-quantity input {
  min-height: 46px;
}

.shop-button {
  width: 100%;
}

.shop-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.shop-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.shop-status.error {
  color: var(--red-dark);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--charcoal);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

h3 {
  margin: 0;
  font-size: 26px;
}

.service-card p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.service-select {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #f3f0ea;
}

.service-select:hover {
  background: #e8e1d7;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: 34px 0 72px;
}

.booking-copy {
  position: sticky;
  top: 96px;
}

.booking-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.booking-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 18px;
  background: #fff;
  border-left: 5px solid var(--gold);
}

.booking-note span {
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
label {
  color: #2f3740;
  font-size: 14px;
  font-weight: 800;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  padding: 6px;
  background: #eee9e1;
}

.segmented label {
  cursor: pointer;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: #47515c;
}

.segmented input:checked + span {
  color: #fff;
  background: var(--charcoal);
}

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

label {
  display: grid;
  gap: 8px;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 22, 27, 0.18);
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
}

input[type="file"] {
  min-height: auto;
  padding: 11px 13px;
  cursor: pointer;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(22, 122, 127, 0.2);
  border-color: var(--teal);
}

.submit-button {
  width: 100%;
}

.file-field small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.file-status {
  min-height: 18px;
}

.file-status.error {
  color: var(--red-dark);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.privacy-note {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.confirmation {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 66px;
  padding: 28px;
  color: #fff;
  background: var(--charcoal);
}

.confirmation[hidden] {
  display: none;
}

.confirmation h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.confirmation p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.delivery-status {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.confirmation-actions {
  display: grid;
  gap: 10px;
  min-width: min(220px, 100%);
}

.contact-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 7px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: center;
  }

  nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 8, 12, 0.92), rgba(5, 8, 12, 0.58)),
      linear-gradient(0deg, rgba(5, 8, 12, 0.54), rgba(5, 8, 12, 0.12));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 98px;
  }

  .quick-bar,
  .shop-grid,
  .service-grid,
  .booking-section,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .shop-heading,
  .shop-controls {
    grid-template-columns: 1fr;
  }

  .quick-bar {
    margin-top: 0;
    width: 100%;
  }

  .booking-copy {
    position: static;
  }

  .contact-strip {
    display: grid;
  }

  .contact-list {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 118px;
    height: 66px;
  }

  .hero-actions,
  .confirmation {
    display: grid;
  }

  .button,
  .submit-button,
  .service-select {
    width: 100%;
  }

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