:root {
  --bg: #f3eee7;
  --bg-soft: #fbf7f2;
  --panel: rgba(255, 250, 244, 0.86);
  --panel-strong: rgba(255, 252, 248, 0.96);
  --ink: #162231;
  --ink-soft: #586271;
  --navy: #612d12;
  --navy-2: #8b4317;
  --sand: #eb8932;
  --sand-soft: #f6c18c;
  --orange-deep: #cf6f23;
  --orange-soft: #ffe2c0;
  --line: rgba(15, 34, 51, 0.12);
  --line-strong: rgba(15, 34, 51, 0.22);
  --success: #446d55;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-xl: 0 34px 70px rgba(15, 34, 51, 0.16);
  --shadow-lg: 0 20px 48px rgba(15, 34, 51, 0.12);
  --shadow-md: 0 14px 28px rgba(15, 34, 51, 0.08);
  --shell: min(1240px, calc(100vw - 40px));
  --sans: "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --serif: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.22), transparent 22%),
    radial-gradient(circle at bottom right, rgba(207, 111, 35, 0.12), transparent 20%),
    linear-gradient(180deg, #f6d7b8 0, #f3eee7 340px, #f7f3ec 100%);
  line-height: 1.7;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.section,
.page-hero,
.detail-hero,
.breadcrumbs,
.notice-banner,
.site-footer {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  margin-top: 20px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  background: rgba(255, 249, 242, 0.82);
  color: var(--navy);
  border: 1px solid rgba(207, 111, 35, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 42px rgba(106, 53, 20, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(207, 111, 35, 0.12);
}

.brand-logo {
  width: 156px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(167, 84, 24, 0.18);
}

.main-nav,
.hero-actions,
.hero-proof,
.tag-row,
.card-meta,
.fact-list,
.form-row,
.form-actions,
.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.main-nav {
  min-width: 0;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.main-nav a {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: rgba(97, 45, 18, 0.76);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange-deep);
  background: rgba(235, 137, 50, 0.12);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.header-cta,
.btn-primary {
  background: linear-gradient(145deg, #ec8f3b, #d2691f);
  color: #fff;
  box-shadow: 0 16px 28px rgba(210, 105, 31, 0.24);
}

.btn-secondary {
  color: var(--orange-deep);
  background: rgba(255, 248, 239, 0.94);
  border-color: rgba(207, 111, 35, 0.14);
}

.hero,
.page-hero,
.detail-hero {
  padding-top: 34px;
}

.hero-frame,
.hero-visual,
.hero-side-visual,
.hero-stats,
.card-grid,
.two-up,
.trust-grid,
.consult-grid,
.content-grid,
.split-blocks {
  display: grid;
  gap: 22px;
}

.hero-frame {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  min-height: 690px;
  background: linear-gradient(132deg, #f29a42 0%, #df7425 48%, #c95a19 100%);
  border-radius: 40px;
  padding: 34px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 233, 203, 0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-frame::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 158, 0.18), rgba(255, 212, 158, 0));
  pointer-events: none;
}

.hero-copy,
.hero-floating-card,
.page-hero,
.story-card,
.side-panel,
.lead-form,
.entry-card,
.compact-item,
.editorial-item,
.faq-item,
.trust-card {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  z-index: 1;
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(255, 244, 231, 0.88));
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1,
.section-head h2,
.entry-body h3,
.compact-item h3,
.editorial-item h3,
.faq-item h2,
.lead-form h3,
.story-card h2,
.story-card h3,
.trust-card h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(44px, 6vw, 78px);
  max-width: 8.8em;
}

.hero-text,
.page-hero p,
.detail-copy p,
.story-lead,
.lead,
.consult-copy p {
  font-size: 17px;
}

.hero-text {
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 18px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand);
}

.hero-copy .eyebrow,
.hero-floating-card .eyebrow,
.hero-visual-copy .eyebrow,
.detail-media-chip {
  color: #ffdfa9;
}

.hero-proof {
  margin-top: 18px;
}

.hero-brand-lockup {
  margin-bottom: 18px;
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(207, 111, 35, 0.12);
}

.hero-brand-lockup img {
  width: min(228px, 52vw);
  border-radius: 20px;
  box-shadow: 0 22px 40px rgba(188, 98, 26, 0.2);
}

.tag-pill,
.meta-chip,
.entry-cover-chip,
.detail-media-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.tag-pill,
.meta-chip {
  background: rgba(15, 34, 51, 0.08);
  color: var(--navy);
}

.hero-copy .tag-pill {
  background: rgba(235, 137, 50, 0.12);
  color: var(--orange-deep);
}

.hero-stats {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-stat-card {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(207, 111, 35, 0.12);
  backdrop-filter: blur(10px);
}

.hero-stat-card span,
.fact-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat-card span {
  color: rgba(97, 45, 18, 0.62);
}

.hero-stat-card strong,
.fact-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.16;
}

.hero-stat-card strong {
  color: var(--ink);
}

.hero-visual {
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) 214px;
  align-items: stretch;
}

.hero-main-visual,
.hero-mini-card,
.collection-visual,
.detail-media,
.entry-cover {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.hero-main-visual {
  min-height: 620px;
  box-shadow: var(--shadow-lg);
}

.hero-main-visual img,
.hero-mini-card img,
.collection-visual img,
.detail-media img,
.entry-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-main-visual:hover img,
.hero-mini-card:hover img,
.entry-card:hover .entry-cover img {
  transform: scale(1.04);
}

.hero-visual-overlay,
.hero-mini-overlay,
.entry-cover-overlay,
.detail-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 14, 9, 0.06), rgba(30, 14, 6, 0.6)),
    linear-gradient(135deg, rgba(235, 137, 50, 0.06), rgba(207, 111, 35, 0));
}

.hero-visual-copy,
.hero-mini-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
  z-index: 1;
}

.hero-visual-copy h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.08;
}

.hero-visual-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.hero-side-visual {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.hero-mini-card {
  min-height: 299px;
}

.hero-mini-copy span {
  display: inline-block;
  max-width: 10em;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
}

.hero-floating-card {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: min(340px, calc(100% - 64px));
  padding: 24px;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(207, 111, 35, 0.12);
}

.hero-floating-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.14;
}

.check-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.check-list li {
  margin: 8px 0;
  color: var(--ink-soft);
}

.section {
  padding-top: 52px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
}

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

.card-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.card-grid-double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.entry-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 243, 236, 0.92));
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card-grid-single .entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
}

.card-grid-single .entry-cover {
  aspect-ratio: auto;
  min-height: 360px;
}

.card-grid-single .entry-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(106, 53, 20, 0.12);
}

.entry-cover {
  display: block;
  aspect-ratio: 16 / 11;
  min-height: 220px;
}

.entry-cover-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 1;
  background: rgba(255, 247, 237, 0.9);
  border: 1px solid rgba(255, 216, 184, 0.7);
  color: white;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.entry-cover-chip,
.detail-media-chip {
  color: var(--orange-deep);
}

.entry-body {
  padding: 20px 22px 24px;
}

.entry-body h3,
.compact-item h3,
.editorial-item h3,
.faq-item h2 {
  font-size: 30px;
}

.entry-body p,
.compact-item p,
.editorial-item p,
.faq-item p,
.story-card p,
.story-card li,
.fact-panel dd,
.lead-form label span,
.faq-search span {
  color: var(--ink-soft);
}

.entry-body p,
.compact-item p,
.editorial-item p,
.faq-item p {
  margin: 12px 0 0;
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-deep);
}

.text-link:hover {
  color: #a14d17;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 22px 0 0;
  background: linear-gradient(180deg, rgba(232, 132, 44, 0.96), rgba(204, 97, 23, 0.92));
  border-radius: 34px;
  z-index: -1;
}

.section-alt .section-head h2,
.section-alt .section-head p,
.section-alt .section-head .eyebrow,
.section-alt .compact-item,
.section-alt .editorial-item {
  color: white;
}

.section-alt .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.section-alt .compact-item,
.section-alt .editorial-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-alt .compact-item p,
.section-alt .editorial-item p {
  color: rgba(255, 255, 255, 0.68);
}

.two-up,
.trust-grid,
.consult-grid,
.content-grid,
.split-blocks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compact-list,
.editorial-stack,
.faq-stack,
.sidebar-stack {
  display: grid;
  gap: 16px;
}

.compact-item,
.editorial-item,
.faq-item,
.story-card,
.side-panel,
.lead-form,
.trust-card,
.page-hero,
.fact-card {
  padding: 24px;
}

.compact-item,
.editorial-item,
.faq-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.faq-accordion {
  display: block;
  padding: 0;
  overflow: hidden;
}

.faq-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 24px;
  cursor: pointer;
}

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

.faq-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(235, 137, 50, 0.12);
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.faq-accordion[open] .faq-toggle {
  background: rgba(207, 111, 35, 0.16);
}

.faq-answer {
  display: grid;
  gap: 18px;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(213, 109, 33, 0.08);
}

.faq-answer .answer-card {
  margin-top: 4px;
}

.faq-inline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.trust-card {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(247, 241, 233, 0.92));
}

.trust-card h3 {
  font-size: 32px;
  margin-top: 6px;
}

.trust-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.contact-qr-card {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 240, 233, 0.94));
  border: 1px solid rgba(213, 109, 33, 0.08);
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.06);
}

.contact-qr-card h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.15;
}

.contact-qr-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.contact-qr-image,
.footer-qr-image {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 18px;
  background: white;
  padding: 10px;
  border: 1px solid rgba(213, 109, 33, 0.12);
}

.contact-qr-placeholder,
.footer-qr-placeholder {
  width: 132px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(235, 137, 50, 0.08);
  border: 1px dashed rgba(207, 111, 35, 0.24);
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 22px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(247, 236, 224, 0.92));
}

.collection-copy h1,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
}

.collection-copy p,
.page-hero p {
  margin: 16px 0 0;
  color: var(--ink-soft);
}

.collection-visual {
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}

.detail-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: stretch;
}

.detail-media {
  min-height: 560px;
  box-shadow: var(--shadow-xl);
}

.detail-media-chip {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
}

.detail-surface {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 238, 230, 0.9));
  border: 1px solid rgba(207, 111, 35, 0.1);
}

.detail-copy h1 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.detail-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.content-grid {
  align-items: start;
}

.story-card {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 242, 235, 0.92));
}

.story-lead {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(235, 137, 50, 0.08), rgba(255, 215, 175, 0.34));
  font-size: 18px;
  color: var(--navy);
}

.story-card h2 {
  margin-top: 28px;
  font-size: 34px;
}

.story-card h3 {
  margin-top: 24px;
  font-size: 28px;
}

.story-card p {
  margin: 14px 0 0;
}

.story-card code {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 34, 51, 0.08);
  font-size: 13px;
}

.bullet-list,
.number-list,
.check-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.bullet-list li,
.number-list li {
  margin: 8px 0;
}

.fact-list {
  gap: 14px;
}

.fact-card {
  flex: 1 1 180px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(245, 239, 232, 0.92));
}

.fact-card strong {
  color: var(--navy);
}

.side-panel {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 239, 232, 0.92));
}

.side-panel h2,
.lead-form h3 {
  font-size: 32px;
}

.fact-panel {
  margin: 18px 0 0;
  display: grid;
  gap: 16px;
}

.fact-panel dt {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.fact-panel dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}

.quote-card,
.answer-card,
.notice-banner {
  border-radius: 22px;
  padding: 20px 22px;
}

.quote-card,
.answer-card {
  background: linear-gradient(180deg, rgba(235, 137, 50, 0.08), rgba(255, 210, 166, 0.28));
  border: 1px solid rgba(235, 137, 50, 0.14);
}

.notice-banner {
  margin-top: 20px;
  background: rgba(68, 109, 85, 0.12);
  border: 1px solid rgba(68, 109, 85, 0.18);
  color: var(--success);
}

.lead-form {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 239, 232, 0.92));
  border: 1px solid rgba(207, 111, 35, 0.1);
}

.lead-form label,
.faq-search {
  display: grid;
  gap: 8px;
}

.lead-form input,
.lead-form textarea,
.faq-search input {
  width: 100%;
  border: 1px solid rgba(15, 34, 51, 0.12);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-form input:focus,
.lead-form textarea:focus,
.faq-search input:focus {
  border-color: rgba(15, 34, 51, 0.32);
  box-shadow: 0 0 0 4px rgba(15, 34, 51, 0.08);
}

.faq-search {
  max-width: 440px;
  margin-top: 22px;
}

.site-footer {
  margin-top: 58px;
  margin-bottom: 28px;
  padding: 26px 0 12px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
  gap: 24px;
  align-items: start;
  color: var(--ink-soft);
  border-top: 1px solid rgba(207, 111, 35, 0.12);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.footer-links a,
.footer-meta span {
  display: block;
  margin-bottom: 8px;
}

.footer-beian {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-beian a {
  color: inherit;
}

.footer-contact {
  display: grid;
  justify-items: start;
  gap: 14px;
}

@media (max-width: 1180px) {
  .hero-frame,
  .collection-hero,
  .detail-hero,
  .consult-grid,
  .content-grid,
  .two-up,
  .trust-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-side-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .hero-main-visual {
    min-height: 520px;
  }

  .hero-mini-card {
    min-height: 220px;
  }

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

@media (max-width: 860px) {
  :root {
    --shell: min(100vw - 24px, 1240px);
  }

  .site-header {
    top: 10px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav {
    justify-content: start;
  }

  .hero-frame,
  .hero-copy,
  .page-hero,
  .story-card,
  .side-panel,
  .lead-form,
  .compact-item,
  .editorial-item,
  .faq-item,
  .trust-card {
    padding: 22px;
  }

  .hero-stat-card strong,
  .fact-card strong {
    font-size: 22px;
  }

  .hero-stats,
  .hero-side-visual,
  .card-grid,
  .split-blocks,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .compact-item,
  .editorial-item,
  .faq-item {
    flex-direction: column;
  }

  .faq-summary {
    flex-direction: column;
  }

  .card-grid-single .entry-card {
    grid-template-columns: 1fr;
  }

  .card-grid-single .entry-cover {
    min-height: 280px;
  }

  .contact-qr-card {
    grid-template-columns: 1fr;
  }

  .hero-main-visual,
  .detail-media,
  .collection-visual {
    min-height: 320px;
  }
}

/* Reference-inspired refresh */

.site-header {
  width: var(--shell);
  top: 10px;
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(255, 251, 247, 0.92);
  border: 1px solid rgba(211, 116, 35, 0.12);
  box-shadow: 0 16px 40px rgba(130, 65, 19, 0.1);
}

.brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 72px;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(167, 84, 24, 0.14);
}

.main-nav a {
  padding: 8px 10px;
  font-size: 13px;
  color: rgba(82, 43, 18, 0.72);
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #ee9641, #d56d21);
  box-shadow: 0 14px 28px rgba(213, 109, 33, 0.24);
}

.btn-secondary {
  background: rgba(255, 250, 244, 0.96);
  color: var(--orange-deep);
  border-color: rgba(213, 109, 33, 0.14);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.hero-home {
  padding-top: 18px;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 1.26fr);
  grid-template-areas: "intro main";
  gap: 16px;
  align-items: stretch;
}

.hero-intro,
.signature-card,
.insight-card,
.review-card,
.faq-teaser,
.planner-item,
.consult-band-shell,
.section-surface,
.style-card,
.entry-card {
  border-radius: 28px;
}

.hero-intro {
  grid-area: intro;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 230, 194, 0.54), transparent 32%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(247, 238, 228, 0.94));
  border: 1px solid rgba(213, 109, 33, 0.1);
  box-shadow: 0 24px 54px rgba(130, 65, 19, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #24160f;
  max-width: 11.5em;
}

.hero-intro .hero-text {
  max-width: 26rem;
  margin-top: 12px;
  font-size: 14px;
  color: rgba(79, 61, 50, 0.86);
}

.hero-intro .eyebrow {
  color: var(--orange-deep);
}

.hero-intro .hero-proof {
  margin-top: 16px;
}

.hero-intro .tag-pill {
  background: rgba(235, 137, 50, 0.1);
  color: var(--orange-deep);
  min-height: 30px;
  padding: 0 10px;
  font-size: 11px;
}

.hero-showcase {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  color: white;
  box-shadow: 0 24px 54px rgba(89, 45, 16, 0.14);
}

.hero-showcase img,
.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.hero-showcase:hover img,
.style-card:hover img {
  transform: scale(1.04);
}

.hero-showcase-main {
  grid-area: main;
  min-height: 500px;
}

.hero-showcase-overlay,
.style-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 18, 10, 0.04), rgba(28, 18, 10, 0.62)),
    linear-gradient(140deg, rgba(235, 137, 50, 0.1), rgba(235, 137, 50, 0));
}

.hero-showcase-copy,
.style-card-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 1;
}

.hero-showcase-copy h2,
.style-card-copy h3 {
  margin: 8px 0 0;
  font-family: var(--sans);
  line-height: 1.06;
}

.hero-showcase-copy .eyebrow,
.style-card-copy .eyebrow {
  color: #ffe0af;
}

.hero-showcase-copy h2 {
  font-size: 22px;
}

.hero-showcase-copy p,
.style-card-copy p {
  margin: 8px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-showcase-copy small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.journey-planner {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.planner-item,
.planner-action {
  min-height: 0;
}

.planner-item {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 251, 247, 0.86);
  border: 1px solid rgba(213, 109, 33, 0.1);
  box-shadow: none;
  border-radius: 999px;
}

.planner-item span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(102, 70, 48, 0.7);
}

.planner-item strong {
  margin-top: 2px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: #28160c;
}

.planner-action {
  min-height: 42px;
  padding: 0 18px;
  width: auto;
}

.signature-band,
.section-surface,
.consult-band {
  margin-top: 24px;
}

.signature-layout,
.insight-band,
.consult-band-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 26px;
}

.insight-band {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  align-items: start;
}

.signature-copy,
.consult-band-copy {
  padding: 8px 4px 8px 0;
}

.signature-copy h2,
.consult-band-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 40px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.signature-copy p,
.consult-band-copy p {
  margin: 18px 0 0;
  font-size: 17px;
  color: var(--ink-soft);
}

.signature-grid,
.review-grid,
.consult-facts {
  display: grid;
  gap: 16px;
}

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

.signature-card {
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(248, 239, 229, 0.92));
  border: 1px solid rgba(213, 109, 33, 0.1);
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.06);
}

.signature-index {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(235, 137, 50, 0.12);
  color: var(--orange-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.signature-card h3 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
}

.signature-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.section-surface {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 238, 230, 0.94));
  border: 1px solid rgba(213, 109, 33, 0.1);
  box-shadow: 0 20px 46px rgba(130, 65, 19, 0.06);
}

.section-head {
  display: block;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.18;
}

.section-head p {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.75;
}

.section-head-simple {
  margin-bottom: 18px;
}

.entry-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 241, 234, 0.96));
  border: 1px solid rgba(213, 109, 33, 0.08);
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.06);
}

.entry-cover {
  aspect-ratio: 16 / 10.6;
}

.entry-body {
  padding: 22px 22px 24px;
}

.entry-body h3 {
  font-size: 21px;
  line-height: 1.2;
}

.entry-body p {
  line-height: 1.75;
}

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

.style-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.1);
}

.style-card:first-child {
  grid-column: 1 / -1;
  min-height: 300px;
}

.style-card-overlay {
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.08) 0%, rgba(20, 14, 10, 0.4) 42%, rgba(20, 14, 10, 0.88) 100%),
    linear-gradient(145deg, rgba(235, 137, 50, 0.08), rgba(235, 137, 50, 0));
}

.style-card-copy {
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(22, 16, 12, 0.46), rgba(22, 16, 12, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.style-card-copy .eyebrow {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 244, 228, 0.16);
  color: rgba(255, 235, 204, 0.96);
  margin-bottom: 10px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.style-card-copy h3 {
  font-size: 22px;
  color: #fff7ef;
  margin: 0;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.32);
}

.style-card-copy p {
  margin: 8px 0 0;
  color: rgba(255, 244, 232, 0.92);
  font-size: 13px;
  line-height: 1.6;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.24);
}

.insight-stack {
  display: grid;
  gap: 16px;
}

.insight-card,
.faq-teaser,
.review-card,
.consult-band-shell,
.lead-form,
.side-panel,
.story-card,
.page-hero,
.detail-surface {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 240, 233, 0.94));
  border: 1px solid rgba(213, 109, 33, 0.08);
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.06);
}

.insight-card,
.faq-teaser,
.review-card {
  padding: 24px;
}

.insight-card {
  min-height: 0;
}

.insight-card h3,
.faq-teaser strong,
.review-card h3 {
  font-family: var(--serif);
}

.insight-card h3,
.review-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.12;
}

.hero-intro h1,
.section-head h2,
.signature-copy h2,
.consult-band-copy h2,
.detail-copy h1,
.page-hero h1,
.entry-body h3,
.insight-card h3,
.review-card h3,
.lead-form h3,
.fact-card strong,
.signature-card h3 {
  font-family: var(--sans);
  letter-spacing: -0.02em;
}

.insight-card p,
.review-card p {
  margin: 12px 0 0;
}

.faq-teaser {
  display: grid;
  gap: 14px;
}

.faq-teaser-link {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(213, 109, 33, 0.08);
}

.faq-teaser-link:first-of-type {
  padding-top: 4px;
  border-top: none;
}

.faq-teaser-link strong {
  font-size: 18px;
  color: #26150d;
}

.faq-teaser-link span {
  color: var(--ink-soft);
  font-size: 14px;
}

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

.review-card blockquote {
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(213, 109, 33, 0.08);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  color: #362116;
}

.consult-band-shell {
  padding: 34px;
  gap: 24px;
}

.consult-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.consult-band-form .lead-form {
  height: 100%;
}

.page-hero,
.collection-hero,
.detail-hero {
  border-radius: 30px;
}

.collection-hero,
.detail-hero {
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 240, 233, 0.94));
}

.detail-surface,
.story-card,
.side-panel,
.lead-form {
  border-radius: 28px;
}

.site-footer {
  margin-top: 70px;
  padding: 34px 28px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(246, 238, 230, 0.92));
  border: 1px solid rgba(213, 109, 33, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.05);
}

@media (max-width: 1180px) {
  .hero-stage,
  .signature-layout,
  .insight-band,
  .consult-band-shell,
  .review-grid,
  .style-grid,
  .signature-grid,
  .consult-facts,
  .journey-planner {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "intro";
  }

  .hero-showcase-main {
    min-height: 360px;
  }

  .style-card {
    min-height: 320px;
  }

  .planner-action {
    width: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    width: calc(100vw - 24px);
    padding: 10px 12px;
  }

  .brand-logo {
    width: 60px;
  }

  .hero-intro,
  .section-surface,
  .consult-band-shell,
  .page-hero,
  .detail-surface,
  .story-card,
  .side-panel,
  .lead-form,
  .insight-card,
  .faq-teaser,
  .review-card,
  .signature-card {
    padding: 22px;
  }

  .hero-intro h1 {
    font-size: clamp(22px, 8vw, 28px);
  }

  .hero-showcase-main {
    min-height: 240px;
  }

  .hero-showcase-copy h2,
  .style-card-copy h3 {
    font-size: 20px;
  }

  .section-surface {
    padding: 24px;
  }
}

/* Site polish: make the site read like a normal, calm travel website. */
.site-header {
  position: relative;
  top: auto;
  margin-top: 14px;
  margin-bottom: 10px;
}

.hero-home {
  padding-top: 8px;
}

.section {
  padding-top: 44px;
}

.section-head {
  align-items: start;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.section-head p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
}

.hero-intro h1,
.signature-copy h2,
.consult-band-copy h2 {
  max-width: 13em;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.16;
}

.hero-intro .hero-text,
.signature-copy p,
.consult-band-copy p,
.lead {
  font-size: 15px;
  line-height: 1.8;
}

.signature-grid,
.consult-facts {
  align-items: stretch;
}

.signature-card,
.fact-card,
.review-card,
.faq-home-card,
.entry-card,
.story-card,
.side-panel,
.lead-form,
.detail-surface,
.page-hero,
.section-surface {
  border-radius: 20px;
}

.signature-card h3,
.fact-card strong {
  font-size: 20px;
  line-height: 1.25;
}

.signature-card p {
  font-size: 14px;
  line-height: 1.75;
}

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

.style-grid-wide .style-card,
.style-grid-wide .style-card:first-child {
  grid-column: auto;
  min-height: 360px;
}

.style-card-copy {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 13, 9, 0.5), rgba(18, 13, 9, 0.82));
}

.style-card-copy h3 {
  font-size: 22px;
  line-height: 1.18;
}

.style-card-copy p {
  font-size: 13px;
  line-height: 1.65;
}

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

.faq-home-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 240, 233, 0.94));
  border: 1px solid rgba(213, 109, 33, 0.08);
  box-shadow: 0 18px 40px rgba(130, 65, 19, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(106, 53, 20, 0.1);
}

.faq-home-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.faq-home-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.review-grid {
  gap: 18px;
}

.review-card h3,
.insight-card h3,
.entry-body h3,
.compact-item h3,
.editorial-item h3,
.faq-item h2 {
  font-size: 22px;
  line-height: 1.25;
}

.entry-body p,
.review-card p,
.insight-card p,
.faq-teaser-link span {
  font-size: 14px;
  line-height: 1.75;
}

.page-hero,
.collection-hero,
.detail-hero {
  padding-top: 24px;
}

.collection-copy h1,
.page-hero h1,
.detail-copy h1 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}

.collection-visual {
  min-height: 300px;
}

.detail-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 20px;
}

.detail-media {
  min-height: 420px;
}

.detail-copy p {
  font-size: 15px;
  line-height: 1.8;
}

.story-card h2 {
  font-size: 28px;
  line-height: 1.2;
}

.story-card h3 {
  font-size: 23px;
  line-height: 1.25;
}

.story-card p,
.story-card li {
  font-size: 15px;
  line-height: 1.85;
}

.content-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
}

.sidebar-stack {
  gap: 14px;
}

.lead-form-compact {
  gap: 12px;
}

.lead-form-compact textarea {
  min-height: 96px;
}

.contact-qr-card .eyebrow {
  margin-bottom: 8px;
}

.site-footer {
  border-radius: 20px;
}

.hero-showcase img,
.style-card img,
.collection-visual img,
.detail-media img,
.entry-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1180px) {
  .hero-stage {
    grid-template-areas:
      "intro"
      "main";
  }

  .style-grid-wide,
  .faq-home-grid,
  .content-grid,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .style-grid-wide .style-card,
  .style-grid-wide .style-card:first-child {
    min-height: 320px;
  }

  .detail-media {
    min-height: 340px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: relative;
    top: auto;
  }

  .main-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .style-grid-wide .style-card,
  .style-grid-wide .style-card:first-child {
    min-height: 280px;
  }

  .faq-home-card {
    min-height: auto;
  }
}

/* Conversion refresh */
:root {
  --bg: #f6f7f4;
  --bg-soft: #ffffff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: #ffffff;
  --ink: #17212b;
  --ink-soft: #596674;
  --navy: #153a43;
  --navy-2: #285d66;
  --sand: #b86d3d;
  --sand-soft: #e7d5c3;
  --orange-deep: #9f5836;
  --orange-soft: #f3e3d5;
  --line: rgba(23, 33, 43, 0.12);
  --line-strong: rgba(23, 33, 43, 0.22);
  --success: #35624b;
  --shadow-xl: 0 26px 70px rgba(20, 45, 54, 0.12);
  --shadow-lg: 0 18px 48px rgba(20, 45, 54, 0.1);
  --shadow-md: 0 10px 26px rgba(20, 45, 54, 0.08);
  --shell: min(1180px, calc(100vw - 44px));
}

body {
  background: linear-gradient(180deg, #eef4f1 0, #f6f7f4 360px, #f8f8f5 100%);
  color: var(--ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-intro h1,
.section-head h2,
.signature-copy h2,
.consult-band-copy h2,
.detail-copy h1,
.page-hero h1,
.entry-body h3,
.insight-card h3,
.review-card h3,
.lead-form h3,
.fact-card strong,
.signature-card h3 {
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 12px 10px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(20, 45, 54, 0.08);
}

.brand-logo {
  width: 58px;
  border-radius: 8px;
  box-shadow: none;
}

.main-nav {
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  border-radius: 8px;
  color: rgba(23, 33, 43, 0.72);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background: rgba(32, 94, 104, 0.09);
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
}

.header-cta,
.btn {
  min-height: 46px;
  border-radius: 999px;
  letter-spacing: 0;
}

.header-cta,
.btn-primary {
  background: #153a43;
  box-shadow: 0 14px 28px rgba(21, 58, 67, 0.2);
}

.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: rgba(21, 58, 67, 0.18);
}

.btn-quiet {
  background: rgba(184, 109, 61, 0.12);
  color: #7c492f;
  border-color: rgba(184, 109, 61, 0.16);
}

.hero-home {
  padding-top: 16px;
}

.hero-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 22px;
  align-items: stretch;
}

.hero-conversion-copy,
.hero-photo,
.service-mode-card,
.pain-card,
.trust-proof-card,
.proof-placeholder-grid div,
.entry-card,
.review-card,
.faq-home-card,
.editorial-item,
.story-card,
.side-panel,
.lead-form,
.fact-card,
.page-hero,
.detail-surface,
.collection-hero,
.contact-question-card {
  border-radius: 8px;
}

.hero-conversion-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.hero-conversion-copy h1 {
  margin: 0;
  max-width: 11em;
  font-size: 3.1rem;
  line-height: 1.12;
}

.hero-conversion-copy .hero-text {
  max-width: 38rem;
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--ink-soft);
}

.hero-actions {
  gap: 10px;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-proof-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf8;
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  font-size: 1rem;
  color: var(--navy);
}

.hero-proof-grid span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow-xl);
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 24, 0.04), rgba(7, 19, 24, 0.62));
}

.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.hero-photo figcaption span,
.step-index,
.mini-proof-list dt,
.entry-detail-list dt,
.proof-placeholder-grid span {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.hero-photo figcaption strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.45;
}

.section {
  padding-top: 56px;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2,
.trust-section-head h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.2;
}

.section-head p,
.trust-section-head p {
  max-width: 680px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.section-surface,
.trust-section {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pain-grid,
.service-mode-grid,
.trust-proof-grid,
.proof-placeholder-grid,
.guide-faq-grid {
  display: grid;
  gap: 16px;
}

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

.service-mode-grid,
.trust-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-placeholder-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.guide-faq-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.pain-card,
.service-mode-card,
.trust-proof-card,
.proof-placeholder-grid div,
.contact-question-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.pain-card h3,
.service-mode-card h3,
.trust-proof-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.pain-card p,
.service-mode-card p,
.trust-proof-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
}

.step-index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(21, 58, 67, 0.09);
  color: var(--navy);
}

.trust-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 22px;
}

.proof-placeholder-grid div {
  background: #eef4f1;
  box-shadow: none;
}

.proof-placeholder-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  line-height: 1.45;
}

.card-grid {
  gap: 18px;
}

.entry-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.entry-cover {
  min-height: 230px;
  border-radius: 8px 8px 0 0;
}

.entry-cover-chip {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
}

.entry-body h3,
.review-card h3,
.faq-home-card h3,
.editorial-item h3 {
  font-size: 1.26rem;
  line-height: 1.32;
}

.entry-detail-list,
.mini-proof-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.entry-detail-list div,
.mini-proof-list div {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.entry-detail-list dt,
.mini-proof-list dt {
  text-transform: none;
  letter-spacing: 0;
}

.entry-detail-list dd,
.mini-proof-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
}

.case-proof-card p strong {
  color: var(--navy);
}

.section-bottom-cta {
  margin-top: 22px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-bottom-cta p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-category-filter button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 700;
}

.faq-category-filter button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.faq-search input {
  border-radius: 8px;
}

.contact-question-card {
  margin-top: 22px;
}

.consult-band-shell {
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1180px) {
  .hero-conversion,
  .pain-grid,
  .service-mode-grid,
  .trust-proof-grid,
  .proof-placeholder-grid,
  .guide-faq-grid,
  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100vw - 24px, 1180px);
  }

  body {
    padding-bottom: 78px;
  }

  .site-header {
    position: sticky;
    top: 8px;
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }

  .brand-logo {
    width: 52px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 8px;
    overflow: visible;
  }

  .main-nav.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .main-nav a {
    padding: 11px 12px;
    background: #f7f9f7;
  }

  .header-cta {
    justify-self: end;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero-conversion,
  .pain-grid,
  .service-mode-grid,
  .trust-proof-grid,
  .proof-placeholder-grid,
  .guide-faq-grid,
  .hero-proof-grid,
  .consult-facts,
  .faq-home-grid,
  .review-grid,
  .card-grid,
  .card-grid-double,
  .card-grid-single,
  .content-grid,
  .detail-hero,
  .consult-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-conversion-copy,
  .section-surface,
  .consult-band-shell,
  .page-hero,
  .detail-surface,
  .story-card,
  .side-panel,
  .lead-form,
  .pain-card,
  .service-mode-card,
  .trust-proof-card,
  .review-card,
  .faq-home-card,
  .editorial-item {
    padding: 20px;
  }

  .hero-conversion-copy h1 {
    font-size: 2.2rem;
  }

  .section-head h2,
  .trust-section-head h2,
  .collection-copy h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 1.9rem;
  }

  .hero-photo {
    min-height: 300px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-section-head,
  .section-bottom-cta {
    display: grid;
    align-items: start;
  }

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

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--line);
    box-shadow: 0 16px 36px rgba(20, 45, 54, 0.16);
  }

  .mobile-sticky-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
  }

  .mobile-sticky-cta a:first-child {
    background: rgba(184, 109, 61, 0.13);
    color: #7c492f;
  }

  .mobile-sticky-cta a:last-child {
    background: var(--navy);
    color: #fff;
  }
}

/* Visual recovery: keep the conversion structure, bring back the warmer travel mood. */
:root {
  --bg: #f3eee7;
  --bg-soft: #fbf7f2;
  --panel: rgba(255, 250, 244, 0.9);
  --panel-strong: rgba(255, 252, 248, 0.98);
  --ink: #17212b;
  --ink-soft: #5d6570;
  --navy: #173944;
  --navy-2: #7b421f;
  --sand: #c9763d;
  --sand-soft: #f1cfae;
  --orange-deep: #b7612d;
  --orange-soft: #f8e1c9;
  --line: rgba(105, 69, 43, 0.13);
  --line-strong: rgba(105, 69, 43, 0.24);
  --shadow-xl: 0 34px 80px rgba(83, 54, 30, 0.16);
  --shadow-lg: 0 24px 54px rgba(83, 54, 30, 0.12);
  --shadow-md: 0 16px 36px rgba(83, 54, 30, 0.08);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(236, 176, 116, 0.28), transparent 25%),
    radial-gradient(circle at 90% 16%, rgba(153, 179, 173, 0.18), transparent 22%),
    linear-gradient(180deg, #f5dfc7 0, #f3eee7 330px, #f8f4ee 100%);
}

.site-header {
  top: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.86);
  border-color: rgba(185, 115, 60, 0.14);
  box-shadow: 0 18px 42px rgba(115, 72, 35, 0.13);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 66px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(167, 84, 24, 0.14);
}

.main-nav a {
  border-radius: 999px;
  color: rgba(82, 43, 18, 0.72);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange-deep);
  background: rgba(235, 137, 50, 0.12);
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #173944, #214c58);
  box-shadow: 0 18px 32px rgba(23, 57, 68, 0.22);
}

.btn-secondary {
  background: rgba(255, 250, 244, 0.96);
  color: var(--navy);
  border-color: rgba(185, 115, 60, 0.2);
}

.btn-quiet {
  background: rgba(255, 237, 221, 0.92);
  color: #915127;
  border-color: rgba(185, 115, 60, 0.16);
}

.hero-conversion {
  gap: 20px;
}

.hero-conversion-copy {
  padding: 46px 42px;
  background:
    radial-gradient(circle at top left, rgba(255, 230, 194, 0.72), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 238, 228, 0.94));
  border-color: rgba(185, 115, 60, 0.13);
  border-radius: 24px;
  box-shadow: 0 24px 58px rgba(115, 72, 35, 0.11);
}

.hero-conversion-copy h1 {
  color: #1d2027;
  font-size: clamp(2.6rem, 4.8vw, 4.45rem);
  line-height: 1.05;
  max-width: 10.4em;
}

.hero-conversion-copy .hero-text {
  color: rgba(40, 48, 57, 0.76);
  font-size: 1rem;
}

.eyebrow {
  color: var(--orange-deep);
}

.hero-photo {
  border-radius: 24px;
  min-height: 620px;
  box-shadow: 0 30px 70px rgba(71, 49, 32, 0.18);
}

.hero-photo::after {
  background:
    linear-gradient(180deg, rgba(26, 18, 12, 0.02), rgba(25, 17, 12, 0.48)),
    linear-gradient(130deg, rgba(235, 137, 50, 0.06), rgba(23, 57, 68, 0.08));
}

.hero-photo figcaption {
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 18px 40px rgba(30, 22, 16, 0.14);
  backdrop-filter: blur(12px);
}

.hero-proof-grid div,
.pain-card,
.service-mode-card,
.trust-proof-card,
.proof-placeholder-grid div,
.entry-card,
.review-card,
.faq-home-card,
.editorial-item,
.story-card,
.side-panel,
.lead-form,
.fact-card,
.page-hero,
.detail-surface,
.collection-hero,
.contact-question-card,
.consult-band-shell,
.section-bottom-cta {
  border-radius: 20px;
  border-color: rgba(185, 115, 60, 0.12);
}

.hero-proof-grid div {
  background: rgba(255, 250, 244, 0.74);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.pain-card,
.service-mode-card,
.trust-proof-card,
.proof-placeholder-grid div,
.entry-card,
.review-card,
.faq-home-card,
.editorial-item,
.story-card,
.side-panel,
.lead-form,
.fact-card,
.contact-question-card,
.section-bottom-cta {
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 241, 233, 0.94));
  box-shadow: 0 18px 42px rgba(115, 72, 35, 0.07);
}

.service-mode-card,
.trust-proof-card,
.pain-card {
  position: relative;
  overflow: hidden;
}

.service-mode-card::after,
.trust-proof-card::after,
.pain-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(235, 137, 50, 0.08);
}

.proof-placeholder-grid div {
  background: linear-gradient(180deg, rgba(241, 228, 213, 0.88), rgba(255, 250, 244, 0.72));
  box-shadow: none;
}

.entry-cover {
  border-radius: 20px 20px 0 0;
}

.entry-cover-chip {
  border-radius: 999px;
  color: var(--orange-deep);
  background: rgba(255, 248, 239, 0.9);
}

.collection-hero,
.page-hero,
.detail-hero {
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 239, 230, 0.94));
}

.detail-media,
.collection-visual {
  border-radius: 24px;
}

.consult-band-shell {
  background:
    radial-gradient(circle at top left, rgba(235, 137, 50, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(247, 239, 230, 0.95));
}

.faq-category-filter button {
  border-color: rgba(185, 115, 60, 0.16);
  background: rgba(255, 250, 244, 0.9);
}

.faq-category-filter button.active {
  background: linear-gradient(135deg, #173944, #214c58);
  border-color: transparent;
}

.lead-form input,
.lead-form textarea,
.lead-form select,
.faq-search input {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(105, 69, 43, 0.14);
}

.mobile-sticky-cta {
  border-radius: 20px;
  background: rgba(255, 250, 244, 0.95);
  border-color: rgba(185, 115, 60, 0.14);
}

.mobile-sticky-cta a:first-child {
  background: rgba(255, 237, 221, 0.94);
  color: #915127;
}

.mobile-sticky-cta a:last-child {
  background: linear-gradient(135deg, #173944, #214c58);
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 18px;
  }

  .brand-logo {
    width: 54px;
    border-radius: 14px;
  }

  .nav-toggle {
    border-radius: 12px;
    background: rgba(255, 250, 244, 0.94);
    border-color: rgba(185, 115, 60, 0.2);
    color: #173944;
  }

  .main-nav a {
    border-radius: 14px;
    background: rgba(255, 250, 244, 0.68);
  }

  .hero-conversion-copy {
    padding: 26px 20px;
  }

  .hero-conversion-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.75rem);
  }

  .hero-photo {
    min-height: 330px;
  }

  .hero-proof-grid div,
  .pain-card,
  .service-mode-card,
  .trust-proof-card,
  .entry-card,
  .review-card,
  .faq-home-card,
  .editorial-item,
  .story-card,
  .side-panel,
  .lead-form,
  .fact-card,
  .page-hero,
  .detail-surface,
  .contact-question-card {
    border-radius: 18px;
  }
}

/* Immersive hero recovery: keep the lead-gen content, make the first view feel like travel again. */
.hero-conversion {
  position: relative;
  display: block;
  min-height: 680px;
  overflow: hidden;
  border-radius: 32px;
  background: #0e2229;
  box-shadow: 0 34px 82px rgba(43, 36, 30, 0.2);
}

.hero-conversion::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.hero-conversion-copy {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 72px));
  min-height: 680px;
  padding: 66px 0 58px 52px;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #fff;
}

.hero-conversion-copy .eyebrow {
  color: #f5c899;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero-conversion-copy h1 {
  color: #fff;
  max-width: 9.6em;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 1.02;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
}

.hero-conversion-copy .hero-text {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.hero-conversion .btn-primary {
  background: #f7f0e8;
  color: #173944;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.hero-conversion .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(14px);
}

.hero-conversion .btn-quiet {
  background: rgba(247, 213, 181, 0.2);
  color: #ffe4c8;
  border-color: rgba(255, 228, 200, 0.3);
  backdrop-filter: blur(14px);
}

.hero-conversion .hero-proof-grid {
  max-width: 620px;
}

.hero-conversion .hero-proof-grid div {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.hero-conversion .hero-proof-grid strong {
  color: #fff;
}

.hero-conversion .hero-proof-grid span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  border-radius: inherit;
  box-shadow: none;
}

.hero-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(0.96);
}

.hero-photo::after {
  background:
    linear-gradient(90deg, rgba(8, 18, 22, 0.82) 0%, rgba(8, 18, 22, 0.62) 42%, rgba(8, 18, 22, 0.18) 72%, rgba(8, 18, 22, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 18, 22, 0.08), rgba(8, 18, 22, 0.48));
}

.hero-photo figcaption {
  left: auto;
  right: 28px;
  bottom: 28px;
  width: min(420px, calc(100% - 56px));
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.86);
}

@media (max-width: 860px) {
  .hero-conversion {
    min-height: 760px;
    border-radius: 24px;
  }

  .hero-conversion::before {
    inset: 12px;
    border-radius: 18px;
  }

  .hero-conversion-copy {
    width: auto;
    min-height: 760px;
    padding: 36px 22px 112px;
    justify-content: flex-start;
  }

  .hero-conversion-copy h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    line-height: 1.06;
  }

  .hero-conversion-copy .hero-text {
    font-size: 1rem;
    line-height: 1.82;
  }

  .hero-conversion .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-conversion .hero-proof-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .hero-conversion .hero-proof-grid div {
    padding: 14px 16px;
  }

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

  .hero-photo figcaption {
    display: none;
  }
}
