:root {
  --ink: #111827;
  --muted: #5b6472;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #e7e0d3;
  --orange: #f26f3f;
  --green: #147c69;
  --blue: #244f8f;
  --yellow: #f5c451;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.12);
  --shadow-strong: 0 30px 90px rgba(17, 24, 39, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(231, 224, 211, 0.72);
  backdrop-filter: blur(18px);
  animation: headerDrop 720ms ease both;
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-logo-wrap {
  display: grid;
  gap: 3px;
}

.brand-logo {
  display: block;
  width: clamp(132px, 16vw, 172px);
  height: 46px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
}

.brand-logo-wrap small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav-links a:hover,
.site-footer a:hover,
.back-link:hover {
  color: var(--orange);
}

.nav-links a,
.site-footer a,
.back-link,
.header-action,
.button,
.example-link,
.contact-form button,
.login-form button,
.work-card,
.service-list article,
.hero-media,
.interface-preview,
.bloom-preview {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease;
}

.header-action,
.button,
.contact-form button,
.login-form button,
.interface-preview button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  max-width: min(260px, 32vw);
  overflow: hidden;
  padding: 12px 16px;
  color: #fff;
  background: var(--green);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-action.is-signed-in {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

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

.cart-button,
.cart-close,
.cart-checkout,
.cart-quantity button,
.cart-remove {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.cart-button #cartCount {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 0.76rem;
}

.cart-button-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-button:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.payment-success-notice {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(620px, calc(100% - 32px));
  padding: 18px 18px 18px 22px;
  border: 1px solid rgba(20, 124, 105, 0.35);
  border-radius: 8px;
  color: #fff;
  background: #106b5a;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.24);
  transform: translateX(-50%);
  animation: paymentNoticeIn 320ms ease both;
}

.payment-success-notice[hidden] {
  display: none;
}

.payment-success-notice > div {
  display: grid;
  gap: 4px;
}

.payment-success-notice strong {
  font-size: 1.02rem;
}

.payment-success-notice span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.payment-success-notice button {
  display: grid;
  flex: 0 0 38px;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: 400 1.55rem/1 Arial, sans-serif;
  cursor: pointer;
}

@keyframes paymentNoticeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -14px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

body.cart-open {
  overflow: hidden;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(3px);
}

.cart-backdrop[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(460px, 100%);
  height: 100dvh;
  padding: 0;
  background: #fff;
  box-shadow: -24px 0 70px rgba(17, 24, 39, 0.2);
  transform: translateX(105%);
  transition: transform 280ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-header .eyebrow {
  margin-bottom: 6px;
}

.cart-header h2 {
  margin: 0;
  font-size: 1.55rem;
}

.cart-close {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.7rem;
  line-height: 1;
}

.cart-items {
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item h3 {
  margin: 0 0 7px;
  font-size: 1.02rem;
}

.cart-item-price {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.cart-quantity {
  display: grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
}

.cart-quantity button {
  height: 34px;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.15rem;
}

.cart-quantity button:hover {
  background: #e9f3ef;
}

.cart-remove {
  padding: 6px 0;
  color: #a33c2d;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 800;
}

.cart-line-total {
  align-self: start;
  white-space: nowrap;
  font-weight: 900;
}

.cart-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(330px, 86%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 42px 32px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.cart-empty[hidden] {
  display: none;
}

.cart-footer {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  font-size: 1.55rem;
}

.cart-checkout {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.cart-checkout:hover:not(:disabled) {
  background: #0f6858;
  transform: translateY(-2px);
}

.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-footer > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.header-action:hover,
.button:hover,
.example-link:hover,
.contact-form button:hover,
.login-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(46px, 7vw, 92px) clamp(20px, 5vw, 72px) 36px;
}

.hero-copy {
  max-width: 650px;
  animation: fadeRise 800ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-text,
.feature-copy p,
.contact-section p,
.login-copy p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(242, 111, 63, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  animation: mediaFloat 900ms 220ms ease both;
}

.hero-media:hover,
.interface-preview:hover,
.bloom-preview:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(20px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-strip div {
  padding: 24px;
  background: #fff;
}

.trust-strip div,
.work-card,
.service-list article {
  position: relative;
  overflow: hidden;
}

.trust-strip div::after,
.work-card::after,
.service-list article::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.trust-strip div:hover::after,
.work-card:hover::after,
.service-list article:hover::after {
  transform: translateX(120%);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span,
.work-card p,
.service-list p,
.form-note,
.login-message {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.work-grid,
.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card,
.service-list article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.work-card:hover,
.service-list article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.work-card span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--muted);
  font-weight: 800;
}

.menu-card {
  border-top: 8px solid var(--orange);
}

.booking-card {
  border-top: 8px solid var(--green);
}

.info-card {
  border-top: 8px solid var(--blue);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background: #16231f;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.feature-band::before {
  position: absolute;
  inset: auto -10% -48% 48%;
  width: 460px;
  height: 460px;
  content: "";
  background: radial-gradient(circle, rgba(245, 196, 81, 0.18), transparent 68%);
  transform: rotate(12deg);
}

.feature-copy {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.feature-copy .eyebrow {
  color: var(--yellow);
}

.feature-copy p {
  color: #d5dfd9;
}

.example-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 20px;
  color: #16231f;
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
}

.interface-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #f8f5ee;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.interface-preview button:hover {
  background: #106b5a;
}

.preview-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
}

.preview-top span,
.preview-search,
.preview-list div,
.dash-header,
.dash-row,
.dash-grid span {
  border-radius: 8px;
}

.preview-top span {
  height: 72px;
  background: #dfe8df;
}

.preview-top span:first-child {
  background: var(--orange);
}

.preview-search {
  height: 48px;
  background: #fff;
  border: 1px solid var(--line);
}

.preview-list {
  display: grid;
  gap: 10px;
}

.preview-list div {
  height: 54px;
  background: #fff;
  border: 1px solid var(--line);
}

.interface-preview button {
  min-height: 58px;
  color: #fff;
  background: var(--green);
}

.bloom-preview {
  position: relative;
  z-index: 1;
  aspect-ratio: 2048 / 1000;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #101d19;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.bloom-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bloom-view-button {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(242, 111, 63, 0.26);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.bloom-view-button:hover {
  transform: translateY(-2px);
  background: #e05f36;
  box-shadow: 0 22px 40px rgba(242, 111, 63, 0.32);
}

.service-list article {
  min-height: 220px;
}

.payment-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: #f4efe6;
}

.payment-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.payment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 124, 105, 0.32);
  box-shadow: var(--shadow);
}

.featured-payment {
  border-top: 8px solid var(--green);
}

.payment-label {
  align-self: flex-start;
  margin-bottom: 36px;
  padding: 8px 12px;
  color: #16231f;
  background: #d5e7e1;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card p {
  color: var(--muted);
  line-height: 1.6;
}

.payment-card strong {
  display: block;
  margin-top: auto;
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.payment-button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.payment-button:hover {
  transform: translateY(-2px);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.payment-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.payment-message {
  min-height: 28px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.checkout-panel {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.checkout-panel-header > div {
  display: grid;
  gap: 8px;
}

.checkout-panel-header .payment-label {
  margin: 0;
}

.checkout-panel-header h3 {
  margin: 0;
  font-size: 1.45rem;
}

.checkout-panel-header button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  background: #fbfaf7;
  font: 400 1.7rem/1 Arial, sans-serif;
  cursor: pointer;
}

.checkout-layout {
  display: flex;
  justify-content: center;
  min-height: 660px;
}

#checkout {
  width: min(100%, 760px);
  min-width: 0;
  min-height: 660px;
  padding: 24px;
}

.checkout-body {
  min-height: 100vh;
  background: #eef1ed;
}

.checkout-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.checkout-page-header .brand-logo {
  width: clamp(150px, 16vw, 190px);
  height: 52px;
}

.checkout-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
  width: min(1280px, calc(100% - 40px));
  min-height: calc(100vh - 124px);
  margin: 40px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.checkout-order-summary {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(34px, 4vw, 56px);
  color: #fff;
  background: var(--ink);
}

.checkout-order-summary .eyebrow {
  color: #91d4c4;
}

.checkout-order-summary h1 {
  margin: 0;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0;
}

.checkout-intro {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.checkout-order-items {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.checkout-order-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.checkout-order-item h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 1rem;
}

.checkout-order-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
}

.checkout-order-item strong {
  white-space: nowrap;
}

.checkout-order-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}

.checkout-order-total span {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 800;
}

.checkout-order-total strong {
  font-size: 1.8rem;
}

.checkout-edit-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 40px;
  color: #91d4c4;
  font-weight: 850;
}

.checkout-edit-link:hover {
  color: #fff;
}

.checkout-payment-area {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  background: #fff;
}

.checkout-payment-heading {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 24px;
}

.checkout-payment-heading h2 {
  margin: 0;
  font-size: 2.45rem;
  letter-spacing: 0;
}

.checkout-payment-heading > p:last-child {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
}

.checkout-payment-heading > p.is-error {
  color: #a33c2d;
  font-weight: 800;
}

.checkout-payment-form {
  width: min(100%, 760px);
  margin: 8px auto 0;
  padding: 24px;
}

.checkout-payment-form > button {
  width: 100%;
  min-height: 56px;
  margin-top: 28px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.checkout-payment-form > button:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #0f6858;
  box-shadow: 0 16px 34px rgba(20, 124, 105, 0.22);
}

.checkout-payment-form > button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.checkout-secure-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 111, 63, 0.42);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}

.contact-info-card small,
.contact-info-card strong {
  display: block;
}

.contact-info-card small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info-card strong {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.35;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border-radius: 14px;
}

.mail-icon {
  background: var(--orange);
}

.phone-icon {
  background: var(--ink);
}

.whatsapp-icon {
  background: #25a865;
}

.instagram-icon {
  background: linear-gradient(135deg, #f5c451, #f26f3f 48%, #8f4bd9);
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.contact-form,
.login-form {
  display: grid;
  gap: 16px;
}

.contact-form {
  margin-top: clamp(138px, 13vw, 190px);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button,
.login-form button {
  min-height: 52px;
  color: #fff;
  background: var(--ink);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

.site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: #d9e4df;
  background: #101d19;
  font-weight: 700;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.rights-line {
  display: grid;
  gap: 8px;
}

.footer-logo {
  display: block;
  width: min(176px, 58vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
}

.maker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 6px 8px 6px 18px;
  color: #f8f5ee;
  background: linear-gradient(115deg, rgba(242, 111, 63, 0.24), rgba(245, 196, 81, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.maker-badge span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.maker-badge strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  color: #16231f;
  background: #fff;
  border-radius: 999px;
}

.motion-ready .reveal-section {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.motion-ready .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mediaFloat {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.login-body {
  min-height: 100vh;
  background: #111827;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 520px) 1fr;
  min-height: 100vh;
}

.login-panel {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  align-content: start;
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
}

.login-brand {
  align-self: start;
  justify-self: start;
  margin-bottom: 12px;
}

.login-brand .brand-logo {
  width: clamp(190px, 24vw, 280px);
  height: 92px;
}

.login-brand .brand-logo-wrap small {
  font-size: 0.88rem;
}

.login-copy,
.login-form,
.login-message,
.back-link {
  max-width: 430px;
}

.login-copy {
  align-self: start;
  margin-top: 0;
}

.login-copy h1 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-width: 430px;
  margin: 22px 0 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.auth-tab {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.auth-tab.is-active {
  color: #fff;
  background: var(--ink);
}

.login-form {
  margin-top: 28px;
}

.login-message {
  min-height: 28px;
  margin: 16px 0 0;
  font-weight: 700;
}

.back-link {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 800;
}

.login-art {
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 86px);
  background:
    linear-gradient(120deg, rgba(20, 124, 105, 0.82), rgba(242, 111, 63, 0.74)),
    url("assets/web-hero-new.png") center / cover;
}

.dashboard-body {
  min-height: 100vh;
  background: var(--paper);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

#logoutButton {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

#logoutButton:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.dashboard-shell {
  padding: clamp(48px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.dashboard-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.dashboard-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.dashboard-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

.client-dashboard {
  grid-template-columns: 0.9fr 1.35fr 0.75fr;
}

.admin-dashboard {
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
}

.dashboard-grid[hidden] {
  display: none;
}

.admin-wide-card {
  min-height: 420px;
}

.dashboard-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
}

.dashboard-card > span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--muted);
  font-weight: 900;
}

.dashboard-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.dashboard-card p,
.dashboard-list {
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-list-item {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.dashboard-list-item strong {
  color: var(--ink);
}

.dashboard-list-item span {
  color: var(--green);
  font-weight: 900;
}

.dashboard-list-item small {
  color: var(--muted);
  font-weight: 800;
}

.dashboard-list-item p {
  margin: 6px 0 0;
}

.dashboard-order {
  border-top: 1px solid var(--line);
  background: #fff;
}

.dashboard-order:last-child {
  border-bottom: 1px solid var(--line);
}

.dashboard-order summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 34px 18px 0;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.dashboard-order summary::-webkit-details-marker {
  display: none;
}

.dashboard-order summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 700;
}

.dashboard-order[open] summary::after {
  content: "\2212";
}

.dashboard-order summary > div:first-child {
  display: grid;
  gap: 4px;
}

.dashboard-order summary > div:first-child > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard-order-summary-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.order-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.order-status.is-paid {
  color: #0b5d4e;
  background: #d5e7e1;
}

.order-status.is-processing,
.order-status.is-pending {
  color: #76530b;
  background: #f9e8b9;
}

.order-status.is-cancelled {
  color: #8b3024;
  background: #f7d9d3;
}

.dashboard-order-details {
  padding: 4px 0 22px;
  border-top: 1px dashed var(--line);
}

.dashboard-order-products {
  display: grid;
}

.dashboard-order-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.dashboard-order-product > div {
  display: grid;
  gap: 3px;
}

.dashboard-order-product span {
  color: var(--muted);
  font-size: 0.82rem;
}

.dashboard-order-details dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.dashboard-order-details dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
}

.dashboard-order-details dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-order-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
}

.return-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.return-panel {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.return-logo {
  width: min(240px, 72vw);
  height: 86px;
  margin-bottom: 28px;
  object-fit: contain;
  object-position: left center;
}

.return-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.dashboard-preview {
  width: min(480px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dash-header {
  height: 86px;
  margin-bottom: 18px;
  background: var(--ink);
}

.dash-row {
  height: 42px;
  margin-bottom: 12px;
  background: #e8ebe7;
}

.dash-row.short {
  width: 72%;
  background: #f7d9c8;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.dash-grid span {
  aspect-ratio: 1;
  background: #d5e7e1;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

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

  .hero,
  .feature-band,
  .contact-section,
  .login-shell {
    grid-template-columns: 1fr;
  }

  .checkout-page {
    grid-template-columns: 1fr;
  }

  .checkout-order-summary {
    min-height: 440px;
  }

  .contact-form {
    margin-top: 0;
  }

  .bloom-preview {
    aspect-ratio: 16 / 9;
  }

  .hero {
    min-height: auto;
  }

  .work-grid,
  .service-list,
  .payment-grid,
  .checkout-layout,
  .dashboard-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .login-art {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .dashboard-order summary {
    grid-template-columns: 1fr;
  }

  .dashboard-order-summary-meta {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
  }

  .dashboard-order-details dl > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .payment-success-notice {
    top: 16px;
    align-items: flex-start;
  }

  .checkout-page-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 18px 18px;
  }

  .checkout-page-header .header-action {
    width: 100%;
    max-width: none;
  }

  .checkout-page {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .checkout-order-summary,
  .checkout-payment-area {
    padding: 30px 20px;
  }

  .checkout-order-summary {
    min-height: 410px;
  }

  .checkout-order-summary h1 {
    font-size: 2.25rem;
  }

  .checkout-payment-heading h2 {
    font-size: 1.85rem;
  }

  .checkout-payment-heading,
  .checkout-payment-form {
    padding-right: 0;
    padding-left: 0;
  }

  .brand {
    white-space: normal;
  }

  .header-actions {
    width: 100%;
  }

  .header-action,
  .cart-button,
  #logoutButton {
    flex: 1;
    text-align: center;
  }

  .cart-button {
    justify-content: center;
  }

  .hero,
  .section,
  .feature-band,
  .payment-section,
  .contact-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button {
    width: 100%;
  }

  .maker-badge {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    border-radius: 8px;
    padding: 14px;
  }

  .maker-badge strong {
    justify-content: center;
    width: 100%;
  }

  .work-card,
  .service-list article,
  .payment-card,
  .dashboard-card,
  .interface-preview,
  .dashboard-preview {
    padding: 20px;
  }

  .bloom-preview {
    aspect-ratio: 4 / 5;
  }

  .bloom-preview img {
    object-position: 24% top;
  }

  .bloom-view-button {
    left: 18px;
    bottom: 18px;
  }

  .checkout-layout {
    min-height: 0;
  }

  #checkout {
    min-height: 620px;
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal-section {
    opacity: 1;
    transform: none;
  }
}
