:root {
  --bg: #f7f1e8;
  --bg-strong: #efe1cf;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-dark: #15110d;
  --ink: #16130f;
  --ink-soft: #5f5447;
  --gold: #bf7f3f;
  --gold-deep: #985721;
  --blue: #436787;
  --line: rgba(78, 61, 43, 0.16);
  --line-strong: rgba(78, 61, 43, 0.28);
  --shadow-xl: 0 26px 60px rgba(25, 19, 12, 0.15);
  --shadow-lg: 0 16px 36px rgba(25, 19, 12, 0.1);
  --shadow-md: 0 12px 28px rgba(25, 19, 12, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(191, 127, 63, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf6ef 0%, var(--bg) 55%, #f3eadc 100%);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open,
body.services-open {
  overflow: hidden;
}

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

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

textarea {
  resize: vertical;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section--warm {
  background:
    radial-gradient(circle at right top, rgba(191, 127, 63, 0.15), transparent 24%),
    rgba(255, 248, 238, 0.74);
}

.section--ink {
  background:
    radial-gradient(circle at top right, rgba(191, 127, 63, 0.14), transparent 22%),
    linear-gradient(180deg, #16120e 0%, #1b1510 100%);
  color: #f8f1e7;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.section-heading--centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
}

.section-heading__body {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.breadcrumbs {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0.95rem 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.breadcrumbs__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.breadcrumbs__list li + li::before {
  content: "/";
  color: rgba(95, 84, 71, 0.45);
}

.breadcrumbs__list a:hover {
  color: var(--gold-deep);
}

.breadcrumbs__current {
  color: var(--ink);
  font-weight: 700;
}

.content-panel--light .section-heading__body,
.section--ink .section-heading__body {
  color: rgba(248, 241, 231, 0.74);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff8f0;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(152, 87, 33, 0.22);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
  box-shadow: var(--shadow-lg);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 252, 247, 0.72);
  color: var(--ink);
  box-shadow: none;
}

.button--small {
  min-height: 44px;
  padding: 0.75rem 1.15rem;
}

.text-link {
  color: var(--gold-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--gold);
}

.check-list,
.footer-list,
.number-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 800;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 244, 236, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(78, 61, 43, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 220px;
}

.brand__image {
  display: block;
  width: 100%;
  height: auto;
}

.brand__crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(67, 103, 135, 0.25), rgba(191, 127, 63, 0.18)),
    var(--surface-dark);
  color: #fff8f0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-size: 1.08rem;
  line-height: 1;
}

.brand__text small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link--active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link--active::after {
  transform: scaleX(1);
}

.nav-link--button {
  padding-inline: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.menu-toggle span + span {
  margin-top: 5px;
}

.service-menu {
  position: fixed;
  inset: 129px 0 auto;
  z-index: 35;
  max-height: calc(100vh - 148px);
  overflow: auto;
  border-top: 1px solid var(--line);
  background: rgba(248, 241, 231, 0.98);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

body.services-open .service-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.service-menu__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  padding: 1.5rem 0 1.7rem;
}

.service-menu__column h3 {
  margin-bottom: 0.9rem;
  font-size: 1.7rem;
}

.service-menu__column ul {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-menu__column a {
  color: var(--ink-soft);
}

.service-menu__column a:hover {
  color: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  overscroll-behavior: contain;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(430px, 100vw);
  min-height: 100dvh;
  height: 100dvh;
  max-height: 100dvh;
  padding:
    calc(5rem + env(safe-area-inset-top, 0px))
    1.4rem
    calc(1.5rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #faf3eb 0%, #efe0cc 100%);
  box-shadow: -18px 0 50px rgba(22, 17, 13, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.36);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-link,
.mobile-services summary {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.mobile-services {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0.25rem 0;
}

.mobile-services summary {
  cursor: pointer;
  list-style: none;
}

.mobile-services__list {
  display: grid;
  gap: 0.65rem;
  padding: 0 0 1rem;
}

.mobile-menu__actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

body.menu-open .mobile-menu {
  pointer-events: auto;
}

body.menu-open .mobile-menu__panel {
  transform: translateX(0);
}

body.menu-open .mobile-menu__overlay {
  opacity: 1;
}

.hero {
  position: relative;
}

.hero--home {
  padding: 6.7rem 0 5rem;
}

.hero--home::before,
.hero--inner::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 74%;
  background:
    radial-gradient(circle at 12% 15%, rgba(191, 127, 63, 0.18), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(67, 103, 135, 0.16), transparent 18%);
  pointer-events: none;
}

.hero__grid,
.split-section,
.feature-band,
.faq-layout,
.detail-grid,
.card-grid {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
}

.hero__inner {
  padding: 4.8rem 0 2rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.hero-copy__lead {
  margin-top: 1.3rem;
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.hero-form-card,
.detail-card,
.info-panel,
.service-card,
.testimonial-card,
.contact-card,
.footer-card,
.timeline-card {
  border: 1px solid rgba(78, 61, 43, 0.12);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
}

.hero-form-card {
  padding: 1.6rem;
}

.hero-form-card h2 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.hero-form-card p {
  margin-top: 0.85rem;
  color: var(--ink-soft);
}

.hero-form-card--light {
  background: rgba(255, 252, 247, 0.9);
}

.split-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.split-section--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.feature-band {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.content-panel {
  max-width: 620px;
}

.content-panel--light {
  color: #f8f1e7;
}

.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(67, 103, 135, 0.7), rgba(191, 127, 63, 0.82));
  box-shadow: var(--shadow-xl);
}

.image-panel--book {
  min-height: 520px;
}

.image-panel__visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  object-fit: contain;
  object-position: center;
}

.image-panel__label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.88);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid,
.testimonial-grid,
.logo-row,
.book-showcase,
.timeline-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card,
.detail-card,
.testimonial-card,
.contact-card,
.timeline-card {
  padding: 1.45rem;
}

.service-card h3,
.detail-card h2,
.timeline-card h3 {
  font-size: 2rem;
}

.service-card__eyebrow {
  margin-bottom: 0.9rem;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p,
.detail-card p,
.timeline-card p,
.testimonial-card span,
.testimonial-card p,
.contact-card p {
  color: var(--ink-soft);
}

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

.number-list {
  display: grid;
  gap: 0.9rem;
}

.number-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}

.number-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(191, 127, 63, 0.15);
  color: var(--gold-deep);
  font-weight: 800;
}

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

.book-card {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.book-card__cover {
  padding: 0.9rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(135deg, var(--book-accent), #241a12);
}

.book-card__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(12, 10, 8, 0.32);
}

.book-card__body {
  padding: 1rem;
}

.book-card__body h3 {
  font-size: 1.25rem;
  line-height: 1.1;
}

.book-card__body p {
  margin-top: 0.55rem;
  color: rgba(248, 241, 231, 0.74);
}

.portfolio-layout {
  display: grid;
  gap: 2.5rem;
}

.portfolio-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.portfolio-index a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.portfolio-index a:hover {
  border-color: rgba(191, 127, 63, 0.28);
  color: var(--ink);
}

.portfolio-section {
  display: grid;
  gap: 1.35rem;
  scroll-margin-top: 10rem;
}

.portfolio-section + .portfolio-section {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.portfolio-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.portfolio-section__header h2 {
  margin-top: 0.25rem;
}

.portfolio-section__header p {
  max-width: 760px;
  margin-top: 0.75rem;
  color: var(--ink-soft);
}

.portfolio-section__header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(191, 127, 63, 0.18);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  background: linear-gradient(135deg, var(--portfolio-accent), #1d1712);
}

.portfolio-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1rem;
}

.portfolio-card__body strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.portfolio-card__body span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-card {
  display: grid;
  gap: 0.8rem;
}

.testimonial-card__quote {
  font-size: 1rem;
}

.testimonial-card strong {
  font-size: 1rem;
}

.logo-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid rgba(78, 61, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.78);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger span:first-child {
  font-weight: 700;
}

.faq-item__icon {
  color: var(--gold-deep);
  font-size: 1.28rem;
}

.faq-item__body {
  max-height: 0;
  padding: 0 1.2rem;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
}

.faq-item__body p {
  padding-bottom: 0;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-item__body {
  padding: 0 1.2rem 1.2rem;
}

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

.timeline-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

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

.contact-card a {
  font-weight: 700;
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.inquiry-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field span {
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(78, 61, 43, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 16px;
}

.field textarea {
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(191, 127, 63, 0.62);
  box-shadow: 0 0 0 4px rgba(191, 127, 63, 0.12);
}

.inquiry-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.form-feedback {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-feedback[data-state="pending"] {
  color: var(--ink-soft);
}

.form-feedback[data-state="error"] {
  color: #b3473e;
}

.form-feedback[data-state="success"] {
  color: #2f6b4a;
}

.site-footer {
  margin-top: 3rem;
  padding-top: 4rem;
  color: #f8f1e7;
  background:
    radial-gradient(circle at top right, rgba(191, 127, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #15110d 0%, #100c09 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
  gap: 1.2rem;
}

.footer-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.footer-card h2 {
  font-size: 2rem;
}

.footer-card--brand p {
  margin-top: 1rem;
  color: rgba(248, 241, 231, 0.72);
}

.brand__image--footer {
  max-width: 220px;
}

.footer-contact {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-list--muted a {
  color: rgba(248, 241, 231, 0.72);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem 0 2.3rem;
  color: rgba(248, 241, 231, 0.6);
  font-size: 0.88rem;
}

.footer-meta__links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 1120px) {
  .service-grid,
  .testimonial-grid,
  .timeline-grid,
  .logo-row,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__grid,
  .split-section,
  .feature-band,
  .faq-layout,
  .detail-grid,
  .card-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-section__header {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 960px) {
  .site-header {
    background: rgba(250, 244, 236, 0.96);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .topbar,
  .desktop-nav,
  .nav-actions,
  .service-menu {
    display: none;
  }

  .nav-shell {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-menu {
    inset: 74px 0 0;
    background: linear-gradient(180deg, rgba(250, 243, 235, 0.98) 0%, rgba(239, 224, 204, 0.98) 100%);
    border-top: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .mobile-menu__panel {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 100%;
    height: auto;
    max-height: none;
    padding: 1rem 1.2rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transform: none;
    transition: none;
  }

  .mobile-menu__actions .button {
    width: 100%;
  }

  .mobile-menu__overlay {
    display: none;
  }

  body.menu-open .mobile-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero--home {
    padding: 4.75rem 0 4rem;
  }

  .hero__inner {
    padding: 4rem 0 1.5rem;
  }

  .brand {
    max-width: 170px;
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .hero-copy__lead,
  .section-heading__body {
    font-size: 0.98rem;
  }

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

  .button-row .button {
    width: 100%;
  }

  .inquiry-form__grid,
  .service-grid,
  .testimonial-grid,
  .book-showcase,
  .logo-row,
  .timeline-grid,
  .contact-grid,
  .detail-grid,
  .card-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card,
  .detail-card,
  .info-panel,
  .service-card,
  .testimonial-card,
  .contact-card,
  .footer-card,
  .timeline-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .service-card h3,
  .detail-card h2,
  .timeline-card h3,
  .footer-card h2 {
    font-size: 1.7rem;
  }

  .image-panel {
    min-height: 320px;
  }

  .image-panel--book {
    min-height: 360px;
  }

  .image-panel__visual {
    padding: 1rem;
  }

  .image-panel__label {
    left: 1rem;
    bottom: 1rem;
    font-size: 0.78rem;
  }

  .number-list li {
    grid-template-columns: 38px 1fr;
    gap: 0.75rem;
  }

  .number-list span {
    width: 38px;
    height: 38px;
  }

  .portfolio-index a {
    flex: 1 1 100%;
    justify-content: center;
  }

  .portfolio-section {
    scroll-margin-top: 7rem;
  }

  .portfolio-section__header span {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }

  .faq-item__trigger {
    align-items: flex-start;
  }

  .faq-item__icon {
    margin-top: 0.1rem;
    flex-shrink: 0;
  }

  .inquiry-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-form__footer .button {
    width: 100%;
  }

  .footer-meta__links {
    flex-wrap: wrap;
  }

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

@media (max-width: 480px) {
  .mobile-menu {
    inset: 70px 0 0;
  }

  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand {
    max-width: 150px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero--home {
    padding: 4.2rem 0 3.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 13vw, 3rem);
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 10vw, 2.4rem);
  }

  .hero-form-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .hero-form-card,
  .detail-card,
  .info-panel,
  .service-card,
  .testimonial-card,
  .contact-card,
  .footer-card,
  .timeline-card {
    padding: 1rem;
  }

  .mobile-menu__panel {
    padding-inline: 1rem;
    padding-top: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  }

  .mobile-link,
  .mobile-services summary {
    padding: 0.75rem 0;
    font-size: 1rem;
  }

  .contact-card a,
  .footer-contact a,
  .footer-contact p,
  .form-feedback {
    overflow-wrap: anywhere;
  }
}
