:root {
  --ink: #f8f1ff;
  --muted: rgba(248, 241, 255, 0.7);
  --paper: #050307;
  --soft: #13091c;
  --gold: #d6a33b;
  --gold-deep: #f4d17a;
  --violet: #a15ce6;
  --violet-deep: #251031;
  --panel: #100814;
  --panel-strong: #1c0d27;
  --line: rgba(244, 209, 122, 0.28);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #050307 0%, #100718 42%, #050307 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(5, 3, 7, 0.92);
  color: #fff;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(244, 209, 122, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
  object-position: center;
  background: #000;
  border: 1px solid rgba(244, 209, 122, 0.58);
  box-shadow: 0 0 0 4px rgba(214, 163, 59, 0.08), 0 12px 28px rgba(0, 0, 0, 0.36);
}

.brand span {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(244, 209, 122, 0.12);
  color: var(--gold-deep);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050307;
}

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

.hero-photo {
  object-fit: contain;
  object-position: center;
  background: #050307;
}

.hero-shade {
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(740px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 96px) clamp(18px, 6vw, 80px);
  color: #fff;
}

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

.eyebrow::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.hero h1,
.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  text-wrap: balance;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.13rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #fff0b7 0%, #d6a33b 48%, #9a6b18 100%);
  color: #1d1306;
  border-color: rgba(255, 240, 183, 0.72);
  box-shadow: 0 14px 34px rgba(214, 163, 59, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.button.secondary {
  border-color: rgba(244, 209, 122, 0.42);
  color: #fff;
  background: rgba(16, 8, 20, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button.dark-button,
.button.inline-button {
  width: fit-content;
  margin-top: 10px;
  background: linear-gradient(135deg, #1a0b24, #41175f);
  color: #fff;
  border-color: rgba(244, 209, 122, 0.36);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.button.dark-button {
  margin-top: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(135deg, #050307, #1b0a26 55%, #08040d);
  color: #fff;
  border-top: 1px solid rgba(244, 209, 122, 0.22);
  border-bottom: 1px solid rgba(244, 209, 122, 0.22);
}

.trust-strip div {
  padding: 24px clamp(18px, 4vw, 48px);
  border-right: 1px solid rgba(244, 209, 122, 0.16);
}

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

.trust-strip strong {
  color: #f0c76a;
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-note {
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(244, 209, 122, 0.12), transparent 36%),
    linear-gradient(135deg, #0b0410, #241234 54%, #050307);
  border-bottom: 1px solid rgba(244, 209, 122, 0.18);
}

.pricing-note h2 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
}

.pricing-note p:not(.eyebrow) {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(248, 241, 255, 0.78);
  font-size: 1.08rem;
}

.section {
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

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

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading p:not(.eyebrow),
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.review-grid figure,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    linear-gradient(150deg, rgba(31, 16, 45, 0.98), rgba(12, 6, 17, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
}

.service-card::before,
.review-grid figure::before,
.contact-form::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    linear-gradient(150deg, #2a123a, #4b2070);
  color: #fff;
  border-color: rgba(244, 209, 122, 0.5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(244, 209, 122, 0.08);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(214, 163, 59, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(244, 209, 122, 0.22);
}

.featured .service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #f0c76a;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

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

.service-addons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.service-addons span {
  font-weight: 800;
  color: var(--gold-deep);
}

.service-addons a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 3, 7, 0.74);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.service-addons a:hover,
.service-addons a:focus-visible {
  border-color: rgba(201, 154, 53, 0.65);
  color: var(--gold-deep);
}

.products-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(111, 50, 156, 0.24), transparent 34%),
    linear-gradient(180deg, #08050c, #170b21 56%, #08050c);
  border-top: 1px solid rgba(244, 209, 122, 0.18);
  border-bottom: 1px solid rgba(244, 209, 122, 0.18);
}

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

.product-card {
  position: relative;
  min-height: 238px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0)),
    linear-gradient(150deg, rgba(31, 16, 45, 0.98), rgba(12, 6, 17, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-card::before {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.product-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid rgba(244, 209, 122, 0.28);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(214, 163, 59, 0.1);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.product-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.mini-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, #050307 0%, #1f0d2b 54%, #09040d 100%);
  color: #fff;
  border-top: 1px solid rgba(244, 209, 122, 0.16);
  border-bottom: 1px solid rgba(244, 209, 122, 0.16);
}

.mini-service-copy {
  max-width: 820px;
}

.mini-service-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

.mini-service-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.mini-service .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.mini-service .inline-button {
  margin-top: 28px;
}

.mini-service-note {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(201, 154, 53, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(150deg, rgba(36, 15, 53, 0.92), rgba(214, 163, 59, 0.12));
  box-shadow: var(--shadow);
}

.mini-service-note strong {
  color: #f0c76a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.mini-service-note span {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, #08040d, #1b0e28 55%, #08050c);
  border-top: 1px solid rgba(244, 209, 122, 0.12);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #120b19;
}

.photo-panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #050307;
  border: 1px solid rgba(244, 209, 122, 0.24);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-section {
  background:
    linear-gradient(180deg, #08050c, #13091c 54%, #08050c);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 14px;
}

.gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #050307;
  border: 1px solid rgba(244, 209, 122, 0.18);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(244, 209, 122, 0.22);
  background: rgba(5, 3, 7, 0.82);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.reviews-section {
  background: linear-gradient(180deg, #160b20, #08050c);
  border-top: 1px solid rgba(244, 209, 122, 0.12);
}

.review-grid figure {
  margin: 0;
  padding: 28px;
}

.review-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.review-grid figcaption {
  margin-top: 18px;
  color: var(--gold-deep);
  font-weight: 800;
}

.assistant-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 540px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #050307, #241234 58%, #0b0410);
  border-top: 1px solid rgba(244, 209, 122, 0.16);
  border-bottom: 1px solid rgba(244, 209, 122, 0.16);
}

.assistant-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
}

.assistant-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.chat-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    var(--panel);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, #050307, #2a123a);
  color: #fff;
  border-bottom: 1px solid rgba(244, 209, 122, 0.18);
}

.chat-header img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(244, 209, 122, 0.32);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  max-height: 360px;
  padding: 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, #0d0713, #08050c);
}

.message {
  width: fit-content;
  max-width: min(86%, 420px);
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.96rem;
}

.message.bot {
  background: #180d22;
  border: 1px solid var(--line);
  color: var(--ink);
}

.message.user {
  justify-self: end;
  background: linear-gradient(135deg, #2a123a, #5a2186);
  color: #fff;
  border: 1px solid rgba(244, 209, 122, 0.18);
}

.quick-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
  background: #08050c;
}

.quick-prompts button,
.chat-form button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quick-prompts button {
  padding: 9px 11px;
  background: rgba(217, 168, 63, 0.14);
  color: var(--gold-deep);
  border: 1px solid rgba(244, 209, 122, 0.18);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #100814;
}

.chat-form input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #08050c;
}

.chat-form button {
  padding: 0 16px;
  background: linear-gradient(135deg, #fff0b7, var(--gold));
  color: #1d1306;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 540px);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(68px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #050307, #240f35 62%, #07030a);
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  color: #f0c76a;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(244, 209, 122, 0.42);
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #08050c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.chat-form input:focus {
  outline: 2px solid rgba(244, 209, 122, 0.44);
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #050307;
  color: #fff;
  border-top: 1px solid rgba(244, 209, 122, 0.18);
}

.site-footer img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(244, 209, 122, 0.32);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px 18px 18px;
    background:
      linear-gradient(180deg, rgba(19, 9, 28, 0.98), rgba(5, 3, 7, 0.98));
    border-bottom: 1px solid rgba(244, 209, 122, 0.28);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-photo {
    object-position: 58% center;
  }

  .hero-shade {
    background: transparent;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 42px;
  }

  .trust-strip,
  .service-grid,
  .product-grid,
  .review-grid,
  .gallery-grid,
  .split-section,
  .mini-service,
  .assistant-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .gallery-feature {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-wide,
  .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 209, 122, 0.22);
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 190px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .assistant-actions,
  .chat-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card {
    min-height: 0;
  }

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