:root {
  --ink: #2d2926;
  --ink-soft: #5d5650;
  --paper: #fffdf9;
  --ivory: #f6f1e9;
  --ivory-deep: #ede4d8;
  --line: #ded3c5;
  --gold: #b48b46;
  --gold-dark: #8d6a31;
  --gold-light: #d8bf8b;
  --navy: #14233b;
  --white: #fff;
  --shadow: 0 18px 50px rgba(61, 47, 30, .10);
  --shadow-soft: 0 10px 30px rgba(61, 47, 30, .07);
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .045em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.wide-container {
  width: min(1360px, calc(100% - 48px));
}

.section {
  padding: 112px 0;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
}

.section-kicker.light {
  color: var(--gold-light);
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .075em;
}

.section-description {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 2;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .section-description {
  margin-inline: auto;
}

.center-action {
  margin-top: 46px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 230px;
  padding: 15px 28px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.button-gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.button-outline {
  border-color: #bcae9d;
  background: rgba(255, 255, 255, .68);
  color: var(--ink);
}

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

.button-light {
  border-color: rgba(255, 255, 255, .55);
  background: var(--white);
  color: var(--navy);
}

.button-light-gold {
  background: var(--gold-light);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .65);
  color: var(--white);
}

.button-small {
  min-width: 190px;
  min-height: 52px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  transition: color .2s ease, gap .2s ease;
}

.text-link:hover {
  gap: 24px;
  color: var(--gold-dark);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  border-bottom: 1px solid rgba(75, 63, 49, .08);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, .98);
  box-shadow: 0 8px 24px rgba(50, 39, 27, .08);
}

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

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

.brand-logo-main {
  padding-left: .28em;
  font-family: Georgia, serif;
  font-size: 25px;
  letter-spacing: .28em;
}

.brand-logo-sub {
  margin-top: 7px;
  padding-left: .43em;
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .43em;
}

.global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.global-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.global-nav a::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  transition: width .2s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.header-reserve {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 30px;
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 49% 51%;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--ivory);
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 42%;
  width: 16%;
  height: 100%;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(246, 241, 233, .92) 25%, rgba(246, 241, 233, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 78px 6vw 100px 7vw;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .92), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, var(--ivory) 100%);
}

.hero-eyebrow {
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3em;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .055em;
}

.hero-lead {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 2.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-booking {
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  background-image: url("https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/bridal/assets/images/bridaltop/topkv.webp");
  background-position: 50% 52%;
  background-size: cover;
}
/* 
.hero-visual::after {
  position: absolute;
  inset: 0;
  background-image: url("https://xs176866.xsrv.jp/dev/wp/wp-content/themes/twentytwelve_child/bridal/assets/images/topkv_sp.webp");
  content: "";
} */

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(45, 41, 38, .68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: .24em;
  transform: translateX(-50%);
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 1px;
  height: 44px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(45, 41, 38, .22);
}

.hero-scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 55%;
  background: var(--gold-dark);
  content: "";
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -60%; }
  100% { top: 100%; }
}

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 28px;
}

.trust-item p {
  margin: 0;
  line-height: 1.55;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.trust-item small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 10px;
}

/* Intro */
.section-intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 10vw;
}

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

@media (max-width: 768px) {
  .intro-grid{
    display: block;
  }
}

.intro-copy {
  padding-top: 22px;
}

.intro-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  line-height: 2.2;
}

.intro-copy .text-link {
  margin-top: 10px;
}

/* Ring categories */
.section-rings {
  background: #f8f5f0;
}

.ring-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 54px;
}

.ring-category-card {
  overflow: hidden;
  border: 1px solid rgba(180, 139, 70, .18);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ring-category-image {
  aspect-ratio: 16 / 9;
  background-position: center;
  background-size: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.ring-category-card:hover .ring-category-image {
  transform: scale(1.025);
}

.image-engagement {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .04)), url("../assets/images/bridaltop/engagement-ring-img.png");
}

.image-wedding {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .02)), url("../assets/images/bridaltop/wedding-rings-img.webp");
}

.ring-category-content {
  padding: 34px 38px 40px;
}

.card-en {
  margin: 0 0 8px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .22em;
}

.ring-category-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.ring-category-content p:not(.card-en) {
  min-height: 66px;
  margin: 18px 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Preferences */
.section-preferences {
  background: var(--paper);
}

.preference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.preference-card {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 30px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.preference-card:hover,
.preference-card.is-highlighted {
  border-color: var(--gold);
  background: #fffaf1;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.preference-symbol {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.preference-card h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.preference-card p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.preference-arrow {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: var(--gold-dark);
}

/* Brands */
.section-brands {
  overflow: hidden;
  background: #f5f1eb;
}

.brand-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.brand-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-soft);
}

.brand-card::before {
  position: absolute;
  inset: 0;
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.brand-card:hover::before {
  transform: scale(1.05);
}

.brand-royal::before {
  background-image: url("https://ikd-grp.com/img/bridalbanner/raj.png");
}

.brand-afflux::before {
  background-image: url("https://ikd-grp.com/img/bridalbanner/afflux-thum.jpg");
}

.brand-cafering::before{
  background-image: url("https://ikd-grp.com/wp/wp-content/uploads/2020/05/cafethum-2004.png");
}
.brand-DisneyCinderella::before {
  background-image: url("https://ikd-grp.com/wp/wp-content/uploads/2023/10/70e6d5b145649183e60be27fef15b7bd.png");
}

.brand-card-body::before {
  filter: grayscale(.35) contrast(1.08);
}

.brand-card-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .02) 10%, rgba(20, 15, 12, .75) 100%);
}

.brand-card-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 28px 30px;
  color: var(--white);
}

.brand-name {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: .1em;
}

.brand-card h3 {
  margin: 10px 0 24px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
}

.brand-card a {
  display: inline-flex;
  gap: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.brand-card.is-match {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.brand-list-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.brand-list-page span {
  padding: 9px 14px;
  border: 1px solid rgba(123, 102, 74, .22);
  background: rgba(255, 255, 255, .62);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .05em;
}

.brand-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  text-align: center;
}

/* Premium */
.premium-feature {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: 52% 48%;
  overflow: hidden;
  background: var(--navy);
}
@media (max-width: 768px) {
  .premium-feature{
    display: block;
  }
}

.premium-image {
  background-image: linear-gradient(90deg, rgba(20, 35, 59, .04), rgba(20, 35, 59, .72)), url("https://ikd-grp.com/wp/wp-content/uploads/2025/08/royalass_sp.webp");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.premium-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 9vw 70px 5vw;
  color: var(--white);
}

.premium-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}
@media (max-width: 768px) {
  .premium-content h2{
    font-size: clamp(10px, 4vw, 18px);
  }
}

.premium-content > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .78);
  line-height: 2.1;
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.light-link {
  color: var(--white);
}

/* Products */
.section-products {
  background: var(--paper);
}

.product-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  margin-top: -48px;
  border-bottom: 1px solid var(--line);
}

.product-tab {
  min-width: 150px;
  padding: 16px 22px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
}

.product-tab.is-active {
  border-color: var(--gold-dark);
  color: var(--ink);
  font-weight: 700;
}

.product-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

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

.product-card {
  padding: 0 0 26px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #f4f1ec;
  background-position: center;
  background-size: cover;
}

/* .product-image::after {
  position: absolute;
  inset: auto 50% 28% auto;
  width: 110px;
  height: 26px;
  border: 6px solid rgba(158, 158, 158, .75);
  border-radius: 50%;
  box-shadow: 0 12px 18px rgba(0, 0, 0, .12), inset 0 0 0 2px rgba(255, 255, 255, .9);
  content: "";
  transform: translateX(50%) rotate(-8deg);
} */

.product-image-engagement{
  background-image: url("../assets/images/bridaltop/solitaire.webp");
}
.product-image-diamond{
  background-image: url("../assets/images/bridaltop/melee-diamond.webp");
}
.product-image-wave-eng {
  background-image: url("../assets/images/bridaltop/wave.webp");
}
.product-image-simple {
  background-image: url("../assets/images/bridaltop/simple.webp");
}

.product-image-set {
  background-image: url("../assets/images/engagement-ring.webp");
}


.product-image-wedding{
  background-image: url("../assets/images/bridaltop/straight-line.webp");
}
.product-image-matte{
  background-image: url("../assets/images/bridaltop/matte-finish.webp");
}
.product-image-wave{
  background-image: url("../assets/images/bridaltop/wave-line.webp");
}
.product-image-forged {
  background-image: url("../assets/images/bridaltop/forged-ring.webp");
}




.product-image-wave::after {
  width: 125px;
  height: 23px;
  border-color: rgba(183, 173, 161, .95);
  transform: translateX(50%) rotate(-18deg) skewX(-12deg);
}

.product-image-simple::after {
  border-width: 5px;
  border-color: rgba(179, 170, 158, .85);
  transform: translateX(50%) rotate(8deg);
}

.product-image-matte::after {
  filter: grayscale(1);
  opacity: .78;
}

.product-image-forged::after {
  height: 34px;
  border-width: 7px;
}

.product-card > p,
.product-card > h3,
.product-card > a {
  margin-right: 22px;
  margin-left: 22px;
}

.product-type {
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .22em;
}

.product-card h3 {
  margin-top: 6px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.product-card p:not(.product-type) {
  min-height: 66px;
  margin-top: 12px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 12px;
}

.product-card a {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.product-disclaimer {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: right;
}

/* Flow */
.section-flow {
  background: #f6f1e9;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.flow-item {
  position: relative;
  min-height: 260px;
  padding: 28px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  text-align: center;
}

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

.flow-item::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -7px;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--gold-dark);
  border-right: 1px solid var(--gold-dark);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.flow-item:last-child::after {
  display: none;
}

.flow-number {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: .18em;
}

.flow-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 18px auto 14px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 22px;
}

.flow-item h3 {
  margin: 0;
  margin-top: 1.3rem;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.flow-item p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.8;
}

.flow-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 40px;
  padding: 34px 40px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.flow-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.flow-cta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}

/* Voices */
.section-voices {
  background: var(--paper);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.voice-card {
  position: relative;
  min-height: 290px;
  padding: 46px 34px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.voice-quote {
  position: absolute;
  top: 18px;
  left: 28px;
  margin: 0;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 62px;
  line-height: 1;
}

.voice-card > p:not(.voice-quote) {
  margin: 36px 0 30px;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2;
}

.voice-card div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.voice-card span {
  color: var(--ink-soft);
  font-size: 10px;
}

.voice-card strong {
  font-family: var(--serif);
  font-size: 14px;
}

/* Shops */
.section-shops {
  background: #f3eee6;
}

.shops-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 24px;
  margin-top: 48px;
}

.shop-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: url(https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/assets/images/ikedaplus/img_bridal.jpg);
  box-shadow: var(--shadow-soft);
  background-size: contain;
  background-repeat: no-repeat;
}

/* .shop-visual::before,
.shop-visual::after {
  position: absolute;
  bottom: 80px;
  width: 35%;
  height: 155px;
  border: 16px solid #b39c7f;
  border-top-width: 10px;
    box-shadow: 0 16px 24px rgba(50, 39, 27, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
  content: "";
}

.shop-visual::before {
  left: 10%;
}

.shop-visual::after {
  right: 10%;
} */

.shop-visual-caption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 32px;
  left: 36px;
  /* color: var(--white); */
}

.shop-visual-caption span,
.shop-visual-caption strong {
  display: block;
}

.shop-visual-caption span {
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .22em;
}

.shop-visual-caption strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.shop-region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.shop-region {
  position: relative;
  min-height: 270px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.shop-region > span {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .2em;
}

.shop-region h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.shop-region p {
  margin: 18px 0 36px;
  color: var(--ink-soft);
  font-size: 12px;
}

.shop-region a {
  position: absolute;
  bottom: 26px;
  left: 28px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
}

.shop-note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

/* FAQ */
.section-faq {
  background: var(--paper);
}

.faq-container {
  max-width: 900px;
}

.faq-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-button {
  display: grid;
  width: 100%;
  min-height: 86px;
  grid-template-columns: 1fr 28px;
  align-items: center;
  gap: 20px;
  padding: 20px 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-button span {
  position: relative;
  padding-left: 44px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.faq-button span::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-dark);
  content: "Q";
  font-family: Georgia, serif;
  font-size: 20px;
}

.faq-button i,
.faq-button i::after {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-dark);
  content: "";
  transition: transform .25s ease;
}

.faq-button i::after {
  transform: rotate(90deg);
}

.faq-button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 46px 30px 52px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.final-cta-bg,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-bg {
  background-image: url("../assets/images/bridaltop/cta-hands-img.webp");
  background-position: center;
  background-size: cover;
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(31, 26, 22, .84) 0%, rgba(31, 26, 22, .72) 46%, rgba(31, 26, 22, .18) 100%);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 620px;
  width: min(1180px, calc(100% - 48px));
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
  color: var(--white);
}

.final-cta-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .08em;
}

.final-cta-content > p:not(.section-kicker, .final-cta-note) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  line-height: 2;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.final-cta-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
}

/* bridal-footer */
/* .site-bridal-footer {
  padding: 56px 0 44px;
  background: #211e1b;
  color: var(--white);
}

.bridal-footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  margin-inline: auto;
}

.bridal-footer-logo {
  color: var(--white);
}

.bridal-footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.bridal-footer-nav a {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.bridal-footer-nav a:hover {
  color: var(--white);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, .5);
  font-family: Georgia, serif;
  font-size: 9px;
  letter-spacing: .08em;
} */


.page-top {
  position: fixed;
  z-index: 950;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(180, 139, 70, .55);
  border-radius: 50%;
  background: rgba(255, 253, 249, .9);
  color: var(--gold-dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top:hover {
  background: var(--white);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

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

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 145px 1fr auto;
    gap: 14px;
    padding-left: 22px;
  }

  .global-nav {
    gap: 18px;
  }

  .global-nav a {
    font-size: 11px;
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .trust-item {
    gap: 10px;
  }

  .brand-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-card {
    min-height: 420px;
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

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

  .flow-item::after {
    display: none;
  }

  .product-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-tabs {
    justify-content: flex-start;
    margin-top: 28px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 66px;
  }

  .section {
    padding: 82px 0;
  }

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

  

  .global-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 24px 120px;
    overflow-y: auto;
    background: rgba(255, 253, 249, .99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .global-nav.is-open {
    height: calc(100vh - 65px);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 18px;
  }

  .global-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle-lines {
    display: grid;
    gap: 4px;
  }

  .menu-toggle-lines i {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle-label {
    font-family: Georgia, serif;
    font-size: 7px;
    letter-spacing: .16em;
  }

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

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

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    min-height: 62vw;
    grid-row: 1;
    background-image: url("../assets/images/bridaltop/topkv_sp.webp");
    background-position: center 46%;
  }

  .hero-copy {
    grid-row: 2;
    padding: 46px 24px 70px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.55;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-booking {
    align-self: center;
  }

  .hero-scroll {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ring-category-grid,
  .shop-layout {
    grid-template-columns: 1fr;
  }

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

  .premium-feature {
    grid-template-columns: 1fr;
  }

  .premium-image {
    min-height: 440px;
    background-image: linear-gradient(180deg, rgba(20, 35, 59, .02), rgba(20, 35, 59, .55)), url("https://ikd-grp.com/wp/wp-content/uploads/2025/08/royalass_sp.webp");
  }

  .premium-content {
    padding: 60px 8vw 70px;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .shops-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .bridal-footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .bridal-footer-nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
    font-size: 15px;
  }

  .container,
  .wide-container,
  .bridal-footer-inner,
  .final-cta-content {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    font-size: clamp(28px, 3vw, 40px);
  }

  .section-description {
    font-size: 13px;
    line-height: 1.9;
  }

  .only-pc {
    display: none;
  }

  .header-reserve {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-visual {
    min-height: 76vw;
  }

  .hero-copy {
    padding: 38px 20px 58px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2) {
    min-height: 88px;
    justify-content: flex-start;
    padding-left: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .ring-category-grid {
    gap: 20px;
    margin-top: 36px;
  }

  .ring-category-content {
    padding: 26px 24px 30px;
  }

  .ring-category-content h3 {
    font-size: 25px;
  }

  .ring-category-content p:not(.card-en) {
    min-height: 0;
  }

  .preference-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .preference-card {
    min-height: 150px;
  }

  .brand-feature-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .brand-card {
    min-height: 340px;
  }

  .brand-list-page {
    justify-content: flex-start;
  }

  .premium-image {
    min-height: 310px;
  }

  .premium-content {
    padding: 48px 24px 56px;
  }

  .premium-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .premium-actions .text-link {
    align-self: flex-start;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }

  .product-tab {
    min-width: 0;
    padding: 14px 6px;
    font-size: 11px;
  }

  .product-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .product-image {
    aspect-ratio: 4 / 3;
  }

  .product-disclaimer {
    text-align: left;
  }

  .flow-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .flow-item {
    display: grid;
    min-height: 0;
    grid-template-columns: 56px 1fr;
    align-items: start;
    padding: 22px;
    text-align: left;
  }

  .flow-number {
    grid-column: 1;
    grid-row: 1;
  }

  .flow-icon {
    width: 46px;
    height: 46px;
    grid-column: 1;
    grid-row: 2 / span 2;
    margin: 10px 0 0;
  }

  .flow-item h3,
  .flow-item p {
    grid-column: 2;
  }

  .flow-item h3 {
    grid-row: 2;
    margin-top: 6px;
  }

  .flow-item p {
    grid-row: 3;
    margin-top: 8px;
  }

  .flow-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 22px;
  }

  .shop-visual {
    min-height: 420px;
  }

  .shop-region-grid {
    grid-template-columns: 1fr;
  }

  .shop-region {
    min-height: 220px;
  }

  .faq-button span {
    padding-left: 34px;
    font-size: 16px;
  }

  .faq-answer {
    padding-right: 8px;
    padding-left: 42px;
  }

  .final-cta {
    min-height: 700px;
  }

  .final-cta-bg {
    background-position: 66% center;
  }

  .final-cta-overlay {
    background: linear-gradient(180deg, rgba(31, 26, 22, .3), rgba(31, 26, 22, .88) 56%);
  }

  .final-cta-content {
    min-height: 700px;
    justify-content: flex-end;
    padding-bottom: 64px;
  }

  .final-cta-content h2 {
    font-size: 2rem;
  }

  .final-cta-actions {
    display: grid;
  }

  
  .page-top {
    right: 14px;
    bottom: 84px;
  }
}

/* =========================================================
   Luxury White Theme / 2026-07 revision
   White space, fine rules, serif typography and restrained gold
   ========================================================= */
:root {
  --ink: #1b1a18;
  --ink-soft: #65605a;
  --paper: #ffffff;
  --ivory: #ffffff;
  --ivory-deep: #f7f5f1;
  --line: #e7e2da;
  --line-strong: #cec6ba;
  --gold: #a18450;
  --gold-dark: #80663a;
  --gold-light: #d7c5a5;
  --navy: #1b1a18;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 27, 22, .07);
  --shadow-soft: 0 12px 38px rgba(31, 27, 22, .055);
  --display: "Cormorant Garamond", "GFS Didot", "EB Garamond", "Times New Roman", serif;
  --serif: "Noto Serif JP", "Noto Serif CJK JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Serif JP", "Noto Serif CJK JP", "Yu Mincho", "YuMincho", serif;
}

html {
  background: #fff;
}

body {
  color: var(--ink);
  background: #fff;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .055em;
}

p,
li,
.faq-answer,
.section-description {
  font-weight: 300;
}

.section {
  position: relative;
  padding: 132px 0;
  border-top: 1px solid var(--line);
  background: #fff !important;
}

.section:first-of-type {
  border-top: 0;
}

.section-kicker,
.card-en,
.product-type,
.flow-number,
.shop-region > span,
.shop-visual-caption span,
.hero-eyebrow {
  color: var(--gold-dark);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: .28em;
}

.section-kicker {
  margin-bottom: 18px;
  font-size: 13px;
}

.section-kicker::after {
  display: block;
  width: 34px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--gold-light);
  content: "";
}

.section-heading:not(.center) .section-kicker::after,
.shops-header .section-kicker::after,
.intro-grid .section-kicker::after,
.premium-content .section-kicker::after,
.final-cta-content .section-kicker::after {
  margin-left: 0;
}

.section-title {
  font-size: 38px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .09em;
}

.section-description {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.25;
}

.button {
  min-height: 62px;
  border-radius: 0;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .16em;
  box-shadow: none;
}

.button:hover {
  box-shadow: none;
  transform: translateY(-1px);
}

.button-gold,
.button-light-gold {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.button-gold:hover,
.button-light-gold:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
}

.button-outline,
.button-light,
.button-ghost {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--ink);
}

.button-outline:hover,
.button-light:hover,
.button-ghost:hover {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.text-link,
.brand-card a,
.product-card a,
.shop-region a {
  font-weight: 400;
  letter-spacing: .12em;
}

/* Header */
.site-header,
.site-header.is-scrolled {
  border-bottom: 1px solid rgba(27, 26, 24, .09);
  background: rgba(255, 255, 255, .97);
  box-shadow: none;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(27, 26, 24, .035);
}

.menu-toggle-label {
  font-family: var(--display);
  font-weight: 500;
}

.global-nav a {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .07em;
}

/* Hero */
.hero {
  min-height: 790px;
  grid-template-columns: 44% 56%;
  background: #fff;
}

.hero::before {
  left: 37%;
  width: 18%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .96) 35%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy {
  padding-right: 4.5vw;
  background: #fff;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: .085em;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.25;
}

.hero-visual {
  filter: saturate(.82) contrast(.97) brightness(1.035);
}

/* .hero-visual::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .03));
} */

.hero-scroll {
  color: var(--ink-soft);
  font-family: var(--display);
}

/* Trust */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-item {
  min-height: 124px;
  border-color: var(--line);
}

.trust-icon {
  color: var(--gold-dark);
  font-family: var(--display);
  font-weight: 400;
}

.trust-item strong {
  font-weight: 400;
  letter-spacing: .08em;
}

.trust-item small {
  color: #817a72;
  font-family: var(--serif);
  font-weight: 300;
}

/* Intro */
.intro-grid {
  grid-template-columns: .92fr 1.08fr;
}

.intro-copy p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.35;
}

/* Category */
.ring-category-grid {
  gap: 42px;
  margin-top: 68px;
}

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

.ring-category-image {
  filter: saturate(.72) contrast(.98) brightness(1.055);
}

.ring-category-content {
  padding: 42px 44px 48px;
  border-top: 1px solid var(--line);
}

.ring-category-content h3 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: .08em;
}

.ring-category-content p:not(.card-en) {
  color: var(--ink-soft);
  line-height: 2.05;
}

/* Preferences */
.preference-grid {
  gap: 0;
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.preference-card {
  min-height: 160px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.preference-card:hover,
.preference-card.is-highlighted {
  border-color: var(--line);
  background: #fbfaf8;
  box-shadow: inset 0 -2px 0 var(--gold);
  transform: none;
}

.preference-symbol {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 400;
}

.preference-card h3 {
  font-weight: 400;
  letter-spacing: .08em;
}

/* Brands */
.section-brands {
  background: #fff !important;
}

.brand-feature-grid {
  gap: 20px;
  margin-top: 68px;
}

.brand-card {
  min-height: 430px;
  border: 1px solid var(--line);
  box-shadow: none;
  filter: saturate(.76) contrast(.98) brightness(1.025);
}

.brand-card-overlay {
  background: linear-gradient(180deg, rgba(19, 17, 15, .02) 22%, rgba(19, 17, 15, .66) 100%);
}

.brand-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: .12em;
}

.brand-card h3 {
  font-weight: 400;
  letter-spacing: .07em;
}

.brand-list-page {
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-list-page span {
  flex: 1 1 190px;
  padding: 14px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-family: var(--display);
  font-size: 13px;
  text-align: center;
}

/* Royal Asscher feature */
.premium-feature {
  min-height: 690px;
  grid-template-columns: 54% 46%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.premium-image {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .16)), url("https://ikd-grp.com/wp/wp-content/uploads/2025/08/royalass_sp.webp");
  filter: saturate(.72) brightness(1.08) contrast(.98);
}

.premium-content {
  padding: 86px 8vw 86px 6vw;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.premium-content h2 {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
}
@media (max-width: 768px){
  .premium-content h2 {
    font-weight: 900;
  }
}

.premium-content > p:not(.section-kicker) {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.25;
}

.section-kicker.light,
.light-link {
  color: var(--gold-dark);
}

/* Products */
.product-tabs {
  border-color: var(--line);
}

.product-tab {
  color: #77716a;
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: .1em;
}

.product-tab.is-active {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 400;
}

.product-panel {
  gap: 24px;
  margin-top: 50px;
}

.product-card {
  border-color: var(--line);
  background: #fff;
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.product-image {
  border-bottom: 1px solid var(--line);
  background-color: #fff;
  filter: saturate(.68) brightness(1.06) contrast(.98);
}

.product-card h3 {
  font-weight: 400;
  letter-spacing: .07em;
}

/* Flow */
.flow-list {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.flow-item,
.flow-item:last-child {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.flow-icon {
  border-color: var(--gold-light);
  border-radius: 0;
  font-family: var(--display);
}

.flow-item h3 {
  font-weight: 400;
  letter-spacing: .08em;
}

.flow-item p {
  color: var(--ink-soft);
}

.flow-cta {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.flow-cta strong {
  font-weight: 400;
  letter-spacing: .06em;
}

/* Voices */
.voice-grid {
  gap: 28px;
  margin-top: 68px;
}

.voice-card {
  min-height: 320px;
  padding: 58px 38px 36px;
  border-color: var(--line);
  background: #fff;
}

.voice-quote {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 72px;
}

.voice-card > p:not(.voice-quote) {
  font-weight: 300;
  line-height: 2.25;
}

.voice-card strong {
  font-weight: 400;
}

/* Shops */
.section-shops {
  background: #fff !important;
}

.shop-layout {
  gap: 30px;
  margin-top: 62px;
}

.shop-visual {
  border: 1px solid var(--line);
  box-shadow: none;
}

.shop-region-grid {
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shop-region {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.shop-region h3 {
  font-weight: 400;
}

/* FAQ */
.faq-list,
.faq-item {
  border-color: var(--line);
}

.faq-button span {
  font-weight: 400;
  letter-spacing: .06em;
}

/* Final CTA: white editorial layout */
.final-cta {
  display: grid;
  min-height: 700px;
  grid-template-columns: 48% 52%;
  border-top: 1px solid var(--line);
  background: #fff;
}

.final-cta-bg {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  background-position: 58% center;
  filter: saturate(.72) brightness(1.045) contrast(.98);
}

.final-cta-overlay {
  display: none;
}

.final-cta-content {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  min-height: 700px;
  justify-content: center;
  margin: 0;
  padding: 90px 5vw 90px 8vw;
  border-right: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.final-cta-content h2 {
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
}

.final-cta-content > p:not(.section-kicker, .final-cta-note),
.final-cta-note {
  color: var(--ink-soft);
}

/* bridal-footer */
/* .site-bridal-footer {
  padding: 64px 0 52px;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.bridal-footer-logo {
  color: var(--ink);
}

.bridal-footer-nav a,
.copyright {
  color: #746f68;
}

.bridal-footer-nav a:hover {
  color: var(--ink);
} */

/* ==================================================
   固定ボタン・ページトップ
================================================== */

.mobile-reserve {
  display: none;
}

.page-top {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
}

/* Responsive adjustments for white theme */
@media (max-width: 1180px) {
  .brand-card {
    min-height: 440px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 100px 0;
  }

  .global-nav {
    background: rgba(255, 255, 255, .995);
  }

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

  .hero-visual {
    min-height: 64vw;
  }

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

  .premium-content {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta-bg {
    min-height: 58vw;
    grid-column: 1;
    grid-row: 1;
  }

  .final-cta-content {
    min-height: auto;
    grid-column: 1;
    grid-row: 2;
    padding: 72px 8vw 82px;
    border-top: 1px solid var(--line);
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .section-title {
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.65;
  }

  .hero-visual {
    min-height: 80vw;
  }

  .hero-copy {
    padding: 48px 22px 66px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.7;
  }

  .trust-item {
    min-height: 96px;
  }

  .ring-category-content {
    padding: 30px 26px 34px;
  }

  .preference-grid,
  .flow-list,
  .shop-region-grid {
    border-left: 1px solid var(--line);
  }

  .preference-card {
    min-height: 164px;
  }

  .brand-card {
    min-height: 370px;
  }

  .premium-image {
    min-height: 340px;
  }

  .premium-content {
    padding: 58px 26px 66px;
  }

  .flow-item {
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

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

  .final-cta {
    min-height: auto;
  }

  .final-cta-bg {
    min-height: 74vw;
    background-position: 66% center;
  }

  .final-cta-content {
    min-height: auto;
    padding: 58px 22px 72px;
  }

  .site-bridal-footer {
    padding-bottom: 110px;
  }
}


/* Proposal support */
.section-proposal {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section-proposal::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 86px;
  background: var(--gold-light);
  content: "";
  transform: translateX(-50%);
}

.section-proposal .section-heading {
  padding-top: 42px;
}

.proposal-intro {
  display: grid;
  overflow: hidden;
  min-height: 610px;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  margin-top: 70px;
  border: 1px solid var(--line);
  background: #fff;
}

.proposal-visual {
  position: relative;
  min-height: 610px;
  border-right: 1px solid var(--line);
  background: #f7f6f3 url("https://ikd-grp.com/wp/wp-content/uploads/2026/04/4af4f5f370b4a0482b1fb23491c9a049.webp") center / contain no-repeat;
}

.proposal-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(28, 25, 22, .16));
  content: "";
  pointer-events: none;
}

.proposal-visual > span {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 38px;
  /* color: rgba(255, 255, 255, .9); */
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .22em;
  line-height: 1.55;
}

.proposal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(42px, 5vw, 82px);
}

.proposal-copy-label {
  margin: 0 0 20px;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .22em;
}

.proposal-copy h3 {
  margin: 0 0 30px;
  font-family: var(--serif);
  /* font-size: clamp(29px, 3.1vw, 43px); */
  font-weight: 400;
  letter-spacing: .075em;
  line-height: 1.7;
}

.proposal-copy > p:not(.proposal-copy-label) {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2.15;
}

.proposal-copy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.proposal-flow-heading {
  margin-top: 82px;
  text-align: center;
}

.proposal-flow-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .09em;
}

.proposal-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.proposal-step {
  position: relative;
  min-height: 340px;
  padding: 42px 38px 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-align: center;
}

.proposal-step::after {
  position: absolute;
  top: 50%;
  right: -9px;
  z-index: 2;
  width: 17px;
  height: 17px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.proposal-step:last-child::after {
  display: none;
}

.proposal-step-number {
  display: block;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .19em;
}

.proposal-step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 24px auto 20px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 25px;
}

.proposal-step h4,
.proposal-benefit h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .08em;
}

.proposal-step p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.proposal-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.proposal-benefit {
  position: relative;
  min-height: 220px;
  padding: 38px 34px 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proposal-benefit > span {
  position: absolute;
  top: 28px;
  right: 8px;
  color: #e9e3d9;
  font-family: var(--display);
  font-size: 52px;
  line-height: 1;
}

.proposal-benefit h4 {
  position: relative;
  z-index: 1;
  padding-right: 48px;
}

.proposal-benefit p {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.proposal-offer {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 60px;
  padding: 32px 38px;
  border: 1px solid var(--line);
  background: #fbfaf8;
}

.proposal-offer-mark {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.proposal-offer-mark span,
.proposal-offer-mark strong {
  display: block;
}

.proposal-offer-mark span {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .2em;
}

.proposal-offer-mark strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .08em;
}

.proposal-offer-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .06em;
  line-height: 1.9;
}

.proposal-offer-copy p strong {
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 500;
}

.proposal-offer-copy small {
  display: block;
  margin-top: 6px;
  color: #756f68;
  font-size: 11px;
  line-height: 1.8;
}

.proposal-offer-actions {
  display: flex;
  gap: 12px;
}

.proposal-offer-actions .button {
  min-width: 188px;
}

.only-sp {
  display: none;
}

@media (max-width: 1180px) {
  .proposal-offer {
    grid-template-columns: 150px 1fr;
  }

  .proposal-offer-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 920px) {
  .proposal-intro {
    grid-template-columns: 1fr;
  }

  .proposal-visual {
    min-height: 66vw;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proposal-copy {
    padding: 62px 8vw 68px;
  }

  .proposal-step-list,
  .proposal-benefit-grid {
    grid-template-columns: 1fr;
  }

  .proposal-step {
    min-height: auto;
    padding: 42px 10vw 44px;
  }

  .proposal-step::after {
    top: auto;
    right: 50%;
    bottom: -9px;
    transform: translateX(50%) rotate(135deg);
  }

  .proposal-benefit-grid {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .proposal-benefit {
    min-height: 0;
    border-top: 0;
    padding: 34px 28px 32px;
  }

  .proposal-offer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proposal-offer-mark {
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proposal-offer-actions {
    grid-column: auto;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .only-sp {
    display: block;
  }

  .section-proposal::before {
    height: 54px;
  }

  .section-proposal .section-heading {
    padding-top: 24px;
  }

  .proposal-intro {
    margin-top: 48px;
  }

  .proposal-visual {
    min-height: 82vw;
    background-position: 50% center;
  }

  .proposal-visual > span {
    bottom: 20px;
    left: 20px;
    font-size: 10px;
  }

  .proposal-copy {
    padding: 42px 24px 48px;
  }

  .proposal-copy h3 {
    /* font-size: 27px; */
    line-height: 1.75;
  }

  .proposal-copy-actions,
  .proposal-offer-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .proposal-copy-actions .button,
  .proposal-offer-actions .button {
    width: 100%;
    min-width: 0;
  }

  .proposal-flow-heading {
    margin-top: 64px;
  }

  .proposal-step-list {
    margin-top: 34px;
  }

  .proposal-step {
    padding: 36px 26px 38px;
  }

  .proposal-benefit-grid {
    margin-top: 42px;
  }

  .proposal-offer {
    margin-top: 44px;
    padding: 28px 22px;
  }

  .proposal-offer-copy p {
    font-size: 16px;
  }

  .proposal-offer-copy p strong {
    font-size: 20px;
  }
}


/* =========================================================
   Second marriage ring section
   ========================================================= */
.section-second-marriage {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.section-second-marriage::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(169, 130, 61, .12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.second-marriage-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  border: 1px solid var(--line);
  background: #fff;
}

.second-marriage-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #f6f4f0 url("https://ikd-grp.com/wp/wp-content/themes/twentytwelve_child/bridal/assets/images/bridaltop/second-marriage.webp") center / cover no-repeat;
}

.second-marriage-visual::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 25, 21, .02), rgba(28, 25, 21, .17));
  content: "";
}

.second-marriage-emblem {
  position: absolute;
  bottom: 34px;
  left: 34px;
  display: grid;
  width: 190px;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: rgba(32, 29, 25, .36);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(7px);
}

.second-marriage-emblem span {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .22em;
}

.second-marriage-emblem strong {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: .9;
}

.second-marriage-content {
  padding: clamp(58px, 6.2vw, 94px);
}

.second-marriage-content .section-title {
  margin-bottom: 30px;
}

.second-marriage-lead {
  color: var(--ink);
  font-size: 16px;
  line-height: 2.1;
}

.second-marriage-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 1px solid var(--gold);
  background: #faf9f7;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.second-marriage-moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.second-marriage-moments article {
  min-width: 0;
  padding: 27px 20px 28px;
  border-right: 1px solid var(--line);
}

.second-marriage-moments article:last-child {
  border-right: 0;
}

.second-marriage-moments span {
  color: var(--gold-dark);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .18em;
}

.second-marriage-moments h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
}

.second-marriage-moments p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.second-marriage-style {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 32px;
}

.second-marriage-style > p {
  font-size: 15px;
  letter-spacing: .06em;
  line-height: 1.8;
}

.second-marriage-style ul {
  display: grid;
  gap: 11px;
}

.second-marriage-style li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.second-marriage-style li::before {
  position: absolute;
  top: .78em;
  left: 0;
  width: 9px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.second-marriage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.second-marriage-actions .button {
  min-width: 230px;
}

@media (max-width: 1080px) {
  .second-marriage-grid {
    grid-template-columns: 1fr;
  }

  .second-marriage-visual {
    min-height: 540px;
    background-position: center 42%;
  }
}

@media (max-width: 680px) {
  .section-second-marriage::before {
    display: none;
  }

  .second-marriage-grid {
    border-right: 0;
    border-left: 0;
  }

  .second-marriage-visual {
    min-height: 72vw;
  }

  .second-marriage-emblem {
    bottom: 18px;
    left: 18px;
    width: 132px;
  }

  .second-marriage-emblem span {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .second-marriage-emblem strong {
    font-size: 21px;
  }

  .second-marriage-content {
    padding: 48px 22px 54px;
  }

  .second-marriage-lead {
    font-size: 14px;
    line-height: 2;
  }

  .second-marriage-note {
    padding: 17px 18px;
    font-size: 12px;
  }

  .second-marriage-moments {
    grid-template-columns: 1fr;
  }

  .second-marriage-moments article {
    padding: 22px 2px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .second-marriage-moments article:last-child {
    border-bottom: 0;
  }

  .second-marriage-style {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .second-marriage-actions {
    display: grid;
  }

  .second-marriage-actions .button {
    width: 100%;
    min-width: 0;
  }
}

/* Fine tuning for the anniversary feature */
.second-marriage-grid {
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.second-marriage-content {
  padding: clamp(54px, 5vw, 76px);
}

.second-marriage-content .section-title {
  /* font-size: clamp(40px, 3vw, 56px); */
  line-height: 1.42;
}

@media (max-width: 1080px) {
  .second-marriage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .second-marriage-content .section-title {
    font-size: clamp(31px, 3vw, 42px);
  }
}

/* Prevent awkward Japanese line breaks in the feature title */
.second-marriage-grid {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.second-marriage-content {
  padding: clamp(50px, 4vw, 60px);
}

.second-marriage-content .section-title {
  /* font-size: clamp(42px, 3vw, 52px); */
}

.second-marriage-content .title-line {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .second-marriage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .second-marriage-visual {
    min-height: 92vw;
    background-position: center;
  }

  .second-marriage-content .section-title {
    font-size: clamp(26px, 3vw, 31px);
    letter-spacing: .04em;
  }
}

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