@charset "UTF-8";

:root {
  --ac-white: #ffffff;
  --ac-paper: #fbfaf8;
  --ac-beige: #e7e2dc;
  --ac-beige-light: #f3f0ec;
  --ac-gold: #a77b35;
  --ac-gold-dark: #876125;
  --ac-ink: #292722;
  --ac-muted: #6f6a62;
  --ac-line: #d9d3cb;
  --ac-shadow: 0 18px 50px rgba(53, 43, 27, 0.08);
  --ac-radius: 2px;
  --ac-container: 1180px;
  --ac-serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --ac-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ac-ink);
  background: var(--ac-white);
  font-family: var(--ac-sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.ac-is-scroll-locked {
  overflow: hidden;
}

.ac-page {
  overflow: hidden;
}

.ac-page img,
.ac-page svg {
  max-width: 100%;
}

.ac-page a {
  color: inherit;
  text-decoration: none;
}

.ac-page button {
  color: inherit;
  font: inherit;
}

.ac-container {
  width: min(calc(100% - 48px), var(--ac-container));
  margin-inline: auto;
}

.ac-section {
  padding: 112px 0;
}

.ac-eyebrow,
.ac-heading__en,
.ac-service-card__label,
.ac-flow-item__step {
  margin: 0;
  color: var(--ac-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.5;
}

.ac-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.ac-heading__title {
  margin: 15px 0 0;
  font-family: var(--ac-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.ac-heading__title::after {
  display: block;
  width: 48px;
  height: 1px;
  margin: 25px auto 0;
  background: var(--ac-gold);
  content: "";
}

.ac-heading__text {
  margin: 28px auto 0;
  color: var(--ac-muted);
  font-size: 15px;
}

/* Hero */
.ac-hero {
  position: relative;
  display: grid;
  min-height: min(760px, 90vh);
  align-items: center;
  overflow: hidden;
  background: #f8f6f3;
  isolation: isolate;
}

.ac-hero::before {
  position: absolute;
  inset: 28px;
  z-index: 1;
  border: 1px solid rgba(167, 123, 53, 0.18);
  content: "";
  pointer-events: none;
}

.ac-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ac-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.88) 28%, rgba(255,255,255,0.48) 54%, rgba(255,255,255,0.12) 100%);
  content: "";
}

.ac-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ac-hero__inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}

.ac-hero__content {
  max-width: 560px;
}

.ac-hero__title {
  margin: 20px 0 0;
  font-family: var(--ac-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.ac-hero__content .ac-eyebrow,
.ac-hero__content .ac-hero__title,
.ac-hero__content .ac-hero__lead {
  text-align: left;
}

.ac-hero__lead {
  margin: 35px 0 0;
  color: var(--ac-muted);
  font-family: var(--ac-serif);
  font-size: clamp(14px, 2vw, 16px);
  letter-spacing: 0.08em;
  line-height: 2.1;
}

.ac-scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ac-gold);
  color: var(--ac-gold-dark);
  font-size: 12px;
  letter-spacing: 0.18em;
  transition: opacity 0.25s ease;
}

.ac-scroll-link:hover {
  opacity: 0.65;
}

.ac-scroll-link span {
  animation: ac-bounce 1.8s ease-in-out infinite;
}

.ac-hero__ornament {
  position: absolute;
  z-index: -1;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(167, 123, 53, 0.22);
  border-radius: 50%;
}

.ac-hero__ornament::before {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(167, 123, 53, 0.16);
  border-radius: inherit;
  content: "";
}

.ac-hero__ornament--left {
  bottom: -80px;
  left: -80px;
}

.ac-hero__ornament--right {
  top: -100px;
  right: -65px;
  width: 310px;
}

@keyframes ac-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Local navigation */
.ac-local-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 1px solid var(--ac-line);
  border-bottom: 1px solid var(--ac-line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.ac-local-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ac-local-nav__list li + li {
  border-left: 1px solid var(--ac-line);
}

.ac-local-nav__list a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  color: var(--ac-muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease;
}

.ac-local-nav__list a:hover,
.ac-local-nav__list a.ac-is-current {
  color: var(--ac-gold-dark);
  background: var(--ac-paper);
}

/* Service cards */
.ac-services {
  background: var(--ac-white);
}

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

.ac-service-card {
  position: relative;
  min-height: 440px;
  padding: 54px 52px 44px;
  border: 1px solid var(--ac-line);
  background: var(--ac-white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.ac-service-card:hover {
  border-color: rgba(167, 123, 53, 0.55);
  box-shadow: var(--ac-shadow);
  transform: translateY(-4px);
}

.ac-service-card::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-right: 1px solid var(--ac-gold);
  border-bottom: 1px solid var(--ac-gold);
  content: "";
  opacity: 0.35;
}

.ac-service-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--ac-beige);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
}

.ac-service-card__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
  border: 1px solid rgba(167, 123, 53, 0.35);
  border-radius: 50%;
  place-items: center;
}

.ac-service-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--ac-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.ac-service-card__title {
  margin: 10px 0 0;
  font-family: var(--ac-serif);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.ac-service-card__text {
  margin: 22px 0 0;
  color: var(--ac-muted);
  font-size: 15px;
}

.ac-service-card__note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--ac-line);
  color: #817a70;
  font-size: 12px;
  line-height: 1.75;
}

/* Message */
.ac-message {
  padding: 86px 0;
  background: var(--ac-beige-light);
}

.ac-message__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.ac-message__image {
  margin: 0;
}

.ac-message__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 18px 46px rgba(86, 67, 39, 0.12);
}

.ac-message__title {
  margin: 16px 0 0;
  font-family: var(--ac-serif);
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.65;
}

.ac-message__text {
  margin: 28px 0 0;
  color: var(--ac-muted);
  font-size: 15px;
}

/* Flow */
.ac-flow {
  background: var(--ac-white);
}

.ac-flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.ac-flow-item {
  position: relative;
  min-height: 250px;
  padding: 38px 30px;
  border-top: 1px solid var(--ac-line);
  border-bottom: 1px solid var(--ac-line);
}

.ac-flow-item + .ac-flow-item {
  border-left: 1px solid var(--ac-line);
}

.ac-flow-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 1;
  width: 17px;
  height: 17px;
  border-top: 1px solid var(--ac-gold);
  border-right: 1px solid var(--ac-gold);
  background: var(--ac-white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.ac-flow-item__title {
  margin: 22px 0 0;
  font-family: var(--ac-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.ac-flow-item__text {
  margin: 18px 0 0;
  color: var(--ac-muted);
  font-size: 14px;
}

/* Notes */
.ac-notes {
  background: var(--ac-paper);
}

.ac-notes__layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(0, 1.4fr);
  gap: 90px;
}

.ac-notes__heading .ac-heading__title {
  font-size: clamp(28px, 3vw, 38px);
}

.ac-notes__heading .ac-heading__title::after {
  margin-left: 0;
}

.ac-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ac-check-list li {
  position: relative;
  padding: 22px 0 22px 42px;
  border-bottom: 1px solid var(--ac-line);
  color: var(--ac-muted);
  font-size: 14px;
}

.ac-check-list li:first-child {
  border-top: 1px solid var(--ac-line);
}

.ac-check-list li::before {
  position: absolute;
  top: 29px;
  left: 8px;
  width: 13px;
  height: 7px;
  border-bottom: 1px solid var(--ac-gold);
  border-left: 1px solid var(--ac-gold);
  content: "";
  transform: rotate(-45deg);
}

.ac-notes__small {
  margin: 28px 0 0;
  padding: 20px 24px;
  border-left: 2px solid var(--ac-gold);
  background: var(--ac-white);
  color: #817a70;
  font-size: 12px;
}

/* FAQ */
.ac-faq {
  background: var(--ac-white);
}

.ac-faq__container {
  max-width: 980px;
}

.ac-accordion {
  border-top: 1px solid var(--ac-line);
}

.ac-accordion__item {
  border-bottom: 1px solid var(--ac-line);
}

.ac-accordion__item h3 {
  margin: 0;
}

.ac-accordion__button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 30px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.ac-accordion__button:hover .ac-accordion__question {
  color: var(--ac-gold-dark);
}

.ac-accordion__q,
.ac-accordion__a {
  color: var(--ac-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.ac-accordion__question {
  padding: 0 24px;
  font-family: var(--ac-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.ac-accordion__icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.ac-accordion__icon::before,
.ac-accordion__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--ac-gold);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.ac-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ac-accordion__button[aria-expanded="true"] .ac-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ac-accordion__panel {
  overflow: hidden;
}

.ac-accordion__panel[hidden] {
  display: none;
}

.ac-accordion__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 0 52px 32px 10px;
}

.ac-accordion__answer p {
  margin: 0;
  color: var(--ac-muted);
  font-size: 14px;
}

/* CTA */
.ac-cta {
  position: relative;
  padding: 100px 0;
  background: var(--ac-gold-dark);
  color: var(--ac-white);
  isolation: isolate;
}

.ac-cta::before,
.ac-cta::after {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  content: "";
}

.ac-cta::before {
  top: -180px;
  left: -100px;
}

.ac-cta::after {
  right: -120px;
  bottom: -230px;
}

.ac-cta__inner {
  text-align: center;
}

.ac-heading__en--light {
  color: rgba(255, 255, 255, 0.72);
}

.ac-cta__title {
  margin: 18px 0 0;
  font-family: var(--ac-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.65;
}

.ac-cta__text {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.ac-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.ac-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 230px;
  padding: 17px 23px;
  border: 1px solid var(--ac-white);
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: color 0.25s ease, background 0.25s ease;
}

.ac-button--light {
  color: var(--ac-gold-dark) !important;
  background: var(--ac-white);
}

.ac-button--light:hover {
  color: var(--ac-white) !important;
  background: transparent;
}

.ac-button--outline {
  color: var(--ac-white);
  background: transparent;
}

.ac-button--outline:hover {
  color: var(--ac-gold-dark);
  background: var(--ac-white);
}

/* Reveal animation */
.ac-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.ac-service-grid .ac-reveal:nth-child(2),
.ac-flow-list .ac-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.ac-service-grid .ac-reveal:nth-child(3),
.ac-flow-list .ac-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.ac-service-grid .ac-reveal:nth-child(4),
.ac-flow-list .ac-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media screen and (max-width: 1000px) {
    .header-inner {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
    }
}

@media (max-width: 960px) {
  .ac-section {
    padding: 88px 0;
  }

  .ac-service-card {
    min-height: auto;
    padding: 46px 38px 38px;
  }

  .ac-message__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .ac-flow-item:nth-child(3) {
    border-left: 0;
  }

  .ac-flow-item:nth-child(2)::after {
    display: none;
  }

  .ac-notes__layout {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  .ac-container {
    width: min(calc(100% - 36px), var(--ac-container));
  }

  .ac-section {
    padding: 72px 0;
  }

  .ac-hero {
    min-height: 620px;
  }

  .ac-hero__media::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.78) 34%, rgba(255,255,255,0.42) 100%);
  }

  .ac-hero::before {
    inset: 14px;
  }

  .ac-hero__inner {
    padding: 100px 8px 80px;
  }

  .ac-hero__content {
    max-width: 100%;
  }

  .ac-hero__content .ac-eyebrow,
  .ac-hero__content .ac-hero__title,
  .ac-hero__content .ac-hero__lead {
    text-align: center;
  }

  .ac-hero__content .ac-hero__lead {
      text-align: left;
  }

  .ac-hero__title {
    letter-spacing: 0.09em;
  }

  .ac-hero__lead br {
    display: none;
  }

  .ac-hero__ornament--left {
    width: 180px;
  }

  .ac-hero__ornament--right {
    width: 210px;
  }

  .ac-local-nav {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .ac-local-nav .ac-container {
    width: 100%;
  }

  .ac-local-nav__list {
    width: max-content;
    min-width: 100%;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }

  .ac-local-nav__list a {
    margin: 0;
    padding: 0;
    font-size: 12px;
  }

  .ac-heading {
    margin-bottom: 42px;
  }

  .ac-heading__text {
    text-align: left;
  }

  .ac-service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ac-service-card {
    padding: 40px 28px 34px;
  }

  .ac-service-card__number {
    top: 22px;
    right: 22px;
    font-size: 44px;
  }

  .ac-service-card__title {
    font-size: 24px;
  }

  .ac-message {
    padding: 66px 0;
  }

  .ac-message__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ac-message__image {
    order: -1;
  }

  .ac-message__image img {
    border-radius: 20px;
  }

  .ac-message__title br,
  .ac-cta__title br {
    display: none;
  }

  .ac-flow-list {
    grid-template-columns: 1fr;
  }

  .ac-flow-item {
    min-height: 0;
    padding: 30px 25px;
    border: 1px solid var(--ac-line);
    border-bottom: 0;
  }

  .ac-flow-item:last-child {
    border-bottom: 1px solid var(--ac-line);
  }

  .ac-flow-item + .ac-flow-item {
    border-left: 1px solid var(--ac-line);
  }

  .ac-flow-item:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -9px;
    transform: translateX(50%) rotate(135deg);
  }

  .ac-flow-item:nth-child(2)::after {
    display: block;
  }

  .ac-notes__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ac-notes__heading .ac-heading__title br {
    display: none;
  }

  .ac-accordion__button {
    padding: 24px 2px;
  }

  .ac-accordion__question {
    padding: 0 14px;
    font-size: 16px;
    line-height: 1.7;
  }

  .ac-accordion__answer {
    gap: 14px;
    padding: 0 5px 28px 2px;
  }

  .ac-cta {
    padding: 78px 0;
  }

  .ac-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* =========================================================
   Shared IKEDA BRIDAL header / footer
   Matches the bridal brand-list page structure and behavior.
   ========================================================= */
:root {
  --site-header-height: 76px;
  --site-line: #e6e0d8;
  --site-line-dark: #cfc5b9;
  --site-gold: #a18450;
  --site-gold-dark: #76531e;
  --site-ink: #262321;
  --site-serif: "Noto Serif CJK JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 9px 14px;
  background: #111;
  color: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--site-header-height);
  padding: 0 !important;
  border-bottom: 1px solid rgba(38, 35, 33, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 8px 25px rgba(50, 40, 30, 0.07);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  padding: 0 34px;
}

.brand-logo {
  display: inline-flex;
  width: 150px;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
}

.global-nav a {
  color: inherit;
  font-family: var(--site-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.global-nav a:hover,
.global-nav a[aria-current="location"] {
  color: var(--site-gold-dark);
}

.header-reserve {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 30px;
  background: var(--site-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: background 0.2s ease;
}

.header-reserve:hover {
  background: var(--site-gold-dark);
}

.menu-toggle {
  display: none;
}

.breadcrumb {
  margin-top: var(--site-header-height);
  border-bottom: 1px solid var(--site-line);
  background: #fff;
}

.breadcrumb ol {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 13px 0;
  gap: 12px;
  list-style: none;
  color: #8f877f;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.breadcrumb li + li::before {
  margin-right: 12px;
  color: #bbb3ab;
  content: "/";
}

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

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--site-line);
  background: #fff;
}

.site-footer-inner {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--site-gold-dark);
}

.site-footer small {
  color: #918a83;
  font-size: 9px;
}

.mobile-reserve {
  display: none;
}

.page-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--site-line-dark);
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.page-top:hover {
  background: #fff;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Keep the local navigation below the fixed shared header. */
.ac-local-nav {
  top: var(--site-header-height);
}

@media (max-width: 860px) {
  :root {
    --site-header-height: 66px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .header-reserve {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 48px;
    height: 56px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle > span {
    display: flex;
    width: 23px;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle i {
    display: block;
    height: 1px;
    background: var(--site-ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle small {
    font-size: 7px;
    letter-spacing: 0.13em;
  }

  .menu-toggle[aria-expanded="true"] i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    top: var(--site-header-height);
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100vh - var(--site-header-height));
    height: calc(100dvh - var(--site-header-height));
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 30px 27px 100px;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.23s ease, visibility 0.23s ease, transform 0.23s ease;
    overflow-y: auto;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .global-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--site-line);
    font-size: 15px;
  }

  .mobile-reserve {
    position: fixed;
    z-index: 999;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--site-gold);
    color: #fff;
    box-shadow: 0 10px 30px rgba(67, 47, 18, 0.22);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
  }

  .page-top {
    bottom: 80px;
  }

  .site-footer {
    padding-bottom: 112px;
  }

  .site-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .breadcrumb ol,
  .site-footer-inner {
    width: calc(100% - 34px);
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
