:root {
  --paper: #f7f6f2;
  --white: #fff;
  --ink: #243b34;
  --muted: #626c65;
  --line: #d9ddd5;
  --accent: #bd5534;
  --green: #29473c;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.85 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.15rem);
  line-height: 1.6;
  letter-spacing: 0.035em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 600;
}
small {
  font-size: 0.8rem;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  background: white;
  z-index: 100;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
.preview-note {
  font-size: 12px;
  letter-spacing: 0.1em;
  background: #e9ece6;
  text-align: center;
  padding: 5px 20px;
}
.preview-note span {
  margin-left: 16px;
  letter-spacing: 0.02em;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 5%;
  background: rgba(247, 246, 242, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand-mark {
  font: 600 30px/1.1 var(--serif);
  letter-spacing: 0.05em;
  border-right: 1px solid #b7bfb6;
  padding-right: 20px;
}
.brand-mark span {
  display: block;
  font:
    10px/1.8 Georgia,
    serif;
  letter-spacing: 0.3em;
  margin-top: 5px;
}
.brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.brand-name small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 400;
  margin-top: 3px;
}
nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
}
nav > a:not(.nav-cta):hover,
.text-link:hover {
  color: var(--accent);
}
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
}
.nav-cta span {
  padding-left: 24px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  min-height: 640px;
  max-width: 1600px;
  margin: auto;
  padding: 52px 5% 64px;
  gap: 5%;
}
.hero-copy {
  padding: 54px 0 12px;
}
.eyebrow {
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.8rem, 4.4vw, 4.7rem);
  line-height: 1.55;
  letter-spacing: 0.025em;
  white-space: nowrap;
}
.accent-word {
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  font-weight: 600;
  margin-top: 25px;
}
.hero-description {
  font-size: 14px;
  line-height: 2.15;
  color: var(--muted);
  margin-top: 20px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 60px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  padding: 17px 25px;
  border: 1px solid var(--green);
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #182f26;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.hero .button {
  margin-top: 32px;
}
.text-link {
  display: inline-flex;
  font-size: 13px;
  gap: 20px;
  margin-left: 20px;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 45px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.hero-meta i {
  width: 22px;
  height: 1px;
  background: #a6afa4;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.photo-frame {
  height: 520px;
  overflow: hidden;
  background: #d5d9ce;
  position: relative;
  border-radius: 46% 46% 0 0;
}
.photo-frame img {
  height: 115%;
  position: relative;
  top: -7.5%;
  filter: saturate(0.6);
}
.image-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  font:
    10px/1.6 Arial,
    sans-serif;
  letter-spacing: 0.12em;
  background: #f7f6f2e8;
  padding: 5px 8px;
  color: #243b34;
}
.photo-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 16px;
  gap: 12px;
}
.photo-caption > span {
  font-size: 14px;
}
.photo-caption small {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.vertical-note {
  writing-mode: vertical-rl;
  position: absolute;
  right: -25px;
  top: 110px;
  font-size: 12px;
  letter-spacing: 0.18em;
}
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 5%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 17px;
}
.intro-strip a {
  font:
    10px Arial,
    sans-serif;
  letter-spacing: 0.12em;
}
.section {
  padding: 105px 8%;
  scroll-margin-top: 20px;
}
.section-head {
  margin-bottom: 55px;
}
.section-head > p:last-child:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin-top: 22px;
}
.custom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.custom-grid article {
  border-top: 1px solid #8d9c8d;
  padding-top: 24px;
}
.item-number {
  display: block;
  color: #9aa68f;
  font:
    italic 37px Georgia,
    serif;
  margin-bottom: 24px;
}
.custom-grid p {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 24px;
  line-height: 2;
}
.tag {
  font-size: 12px;
  display: inline-block;
  border: 1px solid var(--line);
  padding: 4px 14px;
}
.products {
  background: #ebece5;
}
.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 35px;
}
.horizontal > p:last-child {
  font-size: 14px;
  max-width: 340px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 8%;
}
.product-secondary {
  padding-top: 95px;
}
.product-photo {
  height: 380px;
  position: relative;
  overflow: hidden;
  background: #d7dacf;
}
.product-secondary .product-photo {
  height: 330px;
}
.product-photo img {
  filter: saturate(0.65);
  transition: transform 0.6s;
}
.product-photo:hover img {
  transform: scale(1.035);
}
.product-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}
.product-title small {
  font:
    10px Arial,
    sans-serif;
  letter-spacing: 0.14em;
}
.product-title h3 {
  font-size: 19px;
  font-weight: 500;
  margin-top: 5px;
}
.product-title > span {
  font:
    italic 28px Georgia,
    serif;
  color: #8b9585;
}
.product-grid article > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
  line-height: 2;
}
.section-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 36px;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 12%;
  background: var(--green);
  color: var(--paper);
}
.about .eyebrow {
  color: #c7ceba;
}
.about h2 {
  font-size: clamp(2.3rem, 3.5vw, 3.8rem);
}
.about-location {
  font-size: 13px;
  line-height: 2;
  margin-top: 60px;
  color: #cbd3c4;
}
.about-lead {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.85;
  margin: 40px 0 24px;
}
.about-details > p:not(.about-lead) {
  font-size: 14px;
  line-height: 2.1;
  color: #d5dccf;
}
.strength {
  display: flex;
  gap: 24px;
  border-top: 1px solid #ffffff30;
  padding: 23px 0;
}
.strength:first-of-type {
  margin-top: 35px;
}
.strength > span {
  font:
    italic 20px Georgia,
    serif;
  color: #bdc9b7;
  padding-top: 5px;
}
.strength h3 {
  font-size: 16px;
}
.strength p {
  font-size: 13px;
  color: #ced7c7;
  margin-top: 7px;
}
.conditions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #e9ece4;
  padding: 30px 0;
  margin-bottom: 55px;
}
.conditions > div {
  padding: 0 25px;
  border-right: 1px solid #cbd2c3;
}
.conditions > div:last-child {
  border: 0;
}
.conditions span {
  font-size: 12px;
  color: var(--muted);
}
.conditions p {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0;
}
.conditions small {
  font-size: 12px;
  color: var(--muted);
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  gap: 28px;
}
.steps li {
  border-top: 1px solid #9da998;
  padding-top: 24px;
}
.steps small {
  font:
    11px Arial,
    sans-serif;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.steps h3 {
  font-size: 16px;
  margin: 14px 0;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7%;
  padding-top: 30px;
  padding-bottom: 105px;
}
.faq h2 {
  font-size: 30px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 32px 23px 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "＋";
  position: absolute;
  right: 0;
  color: var(--accent);
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 14px;
  padding: 0 25px 23px 0;
  color: var(--muted);
  line-height: 2;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8%;
  background: #e9ece4;
}
.contact h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.contact-intro > p:not(.eyebrow) {
  font-size: 14px;
  margin-top: 24px;
  line-height: 2;
  color: var(--muted);
}
.telephone {
  margin-top: 48px;
}
.telephone > * {
  display: block;
}
.telephone small {
  font-size: 13px;
}
.telephone a {
  font:
    29px/1.8 Georgia,
    serif;
  letter-spacing: 0.03em;
}
.telephone span {
  font-size: 11px;
  color: var(--muted);
}
.contact-form {
  background: var(--paper);
  padding: 32px;
}
.form-preview {
  font-size: 12px;
  color: #7c472f;
  border-left: 2px solid var(--accent);
  padding-left: 10px;
  margin-bottom: 24px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 20px;
}
.contact-form label span,
.contact-form label em {
  font-style: normal;
  font-size: 10px;
  margin-left: 8px;
  color: var(--muted);
}
.contact-form label em {
  color: var(--accent);
}
input,
textarea {
  display: block;
  width: 100%;
  border: 1px solid #cfd5cb;
  border-radius: 0;
  background: #fff;
  padding: 12px;
  margin-top: 7px;
  font-size: 16px;
  color: var(--ink);
}
input::placeholder,
textarea::placeholder {
  font-size: 13px;
  color: #8b9188;
}
textarea {
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.privacy-note {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 20px;
}
.privacy-note a {
  text-decoration: underline;
}
.disabled-button {
  width: 100%;
  background: #778278;
  border-color: #778278;
  cursor: not-allowed;
}
.disabled-button:hover {
  background: #778278;
  transform: none;
}
footer {
  padding: 42px 5% 20px;
  background: #f7f6f2;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-top p {
  font-size: 12px;
  line-height: 2;
}
.footer-brand .brand-name {
  font-size: 13px;
}
.back-top {
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  gap: 35px;
  align-items: center;
  padding-top: 30px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom small {
  font-size: 10px;
  margin-right: auto;
}
.footer-bottom span {
  letter-spacing: 0.12em;
}
.policy {
  max-width: 800px;
  margin: auto;
  min-height: 70vh;
  padding: 60px 25px;
}
.policy h1 {
  font-size: 32px;
}
.policy h2 {
  font: 600 20px var(--sans);
  margin: 30px 0 12px;
}
.policy p {
  margin: 18px 0;
}
.policy a {
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(8%, calc((100vw - 1320px) / 2));
    padding-right: max(8%, calc((100vw - 1320px) / 2));
  }
}
@media (max-width: 1100px) {
  nav {
    gap: 16px;
  }
  .brand-name {
    font-size: 13px;
  }
  .hero {
    gap: 4%;
    padding-top: 30px;
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .hero-description br {
    display: none;
  }
  .hero .text-link {
    display: flex;
    width: fit-content;
    margin-left: 0;
  }
  .photo-frame {
    height: 500px;
  }
  .section {
    padding: 80px 6%;
  }
  .hero-meta {
    margin-top: 25px;
  }
  .faq {
    padding-top: 20px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .intro-strip {
    font-size: 15px;
  }
  .intro-strip a {
    display: none;
  }
  .contact {
    gap: 4%;
  }
  .contact-form {
    padding: 24px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 95px;
  }
  .preview-note {
    font-size: 10px;
    padding: 6px 12px;
  }
  .preview-note span {
    display: block;
    margin: 0;
    font-size: 10px;
  }
  .header {
    padding: 15px 6%;
    min-height: 82px;
  }
  .brand {
    gap: 14px;
  }
  .brand-mark {
    font-size: 25px;
    padding-right: 14px;
  }
  .brand-name {
    font-size: 12px;
  }
  .brand-name small {
    font-size: 9px;
  }
  .menu-toggle {
    display: block;
    border: 0;
    background: none;
    color: var(--ink);
    font-size: 12px;
    padding: 10px 0;
  }
  .menu-toggle span {
    font-size: 19px;
    padding-left: 6px;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 6%;
    border-bottom: 1px solid var(--line);
  }
  nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  nav a {
    padding: 13px 10px;
  }
  .nav-cta {
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 36px 6% 28px;
    min-height: 0;
    gap: 32px;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
    letter-spacing: 0.13em;
  }
  .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.7rem);
    line-height: 1.5;
  }
  .hero-sub {
    font-size: 14px;
    margin-top: 22px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 15px;
  }
  .hero .button {
    margin-top: 24px;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 13px;
  }
  .hero .text-link {
    display: inline-flex;
    margin-left: 15px;
    font-size: 12px;
  }
  .hero-meta {
    font-size: 11px;
    gap: 13px;
    margin-top: 28px;
  }
  .hero-visual {
    margin: 0 10px 0 0;
  }
  .photo-frame {
    height: 360px;
    border-radius: 45% 45% 0 0;
  }
  .photo-frame img {
    transform: none !important;
    height: 100%;
    top: 0;
  }
  .vertical-note {
    right: -21px;
    top: 100px;
    font-size: 11px;
  }
  .photo-caption {
    padding: 15px 0;
  }
  .photo-caption > span {
    font-size: 12px;
  }
  .photo-caption small {
    font-size: 8px;
  }
  .intro-strip {
    padding: 22px 6%;
    gap: 8px;
    flex-direction: column;
    font-size: 14px;
    align-items: flex-start;
  }
  .intro-strip p {
    display: inline;
  }
  .section {
    padding: 65px 6%;
  }
  h2 {
    font-size: 1.9rem;
    line-height: 1.6;
  }
  .section-head {
    margin-bottom: 32px;
  }
  .section-head > p:last-child:not(.eyebrow) {
    font-size: 14px;
    margin-top: 18px;
  }
  .custom-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .custom-grid article {
    position: relative;
    padding: 23px 0 0 48px;
  }
  .item-number {
    position: absolute;
    left: 0;
    top: 25px;
    font-size: 26px;
  }
  .custom-grid h3 {
    font-size: 17px;
  }
  .custom-grid p {
    margin: 12px 0 17px;
    font-size: 14px;
  }
  .horizontal {
    display: block;
  }
  .horizontal > p:last-child {
    max-width: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-secondary {
    padding: 0;
  }
  .product-photo,
  .product-secondary .product-photo {
    height: 280px;
  }
  .product-secondary {
    width: 88%;
    margin-left: auto;
  }
  .product-title h3 {
    font-size: 17px;
  }
  .section-note {
    font-size: 11px;
    margin-top: 25px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about h2 {
    font-size: 2.25rem;
  }
  .about h2 br:last-of-type {
    display: none;
  }
  .about-location {
    margin-top: 24px;
    font-size: 12px;
  }
  .about-lead {
    font-size: 22px;
    margin-top: 0;
  }
  .strength {
    gap: 20px;
  }
  .conditions {
    grid-template-columns: 1fr;
    padding: 8px 23px;
    margin-bottom: 35px;
  }
  .conditions > div {
    border-right: 0;
    border-bottom: 1px solid #cbd2c3;
    padding: 20px 0;
  }
  .conditions p {
    font-size: 15px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .steps h3 {
    font-size: 14px;
  }
  .steps p {
    font-size: 13px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
  }
  .faq h2 {
    font-size: 27px;
  }
  summary {
    font-size: 14px;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-intro > p:not(.eyebrow) {
    font-size: 14px;
  }
  .telephone {
    margin-top: 24px;
  }
  .contact-form {
    padding: 23px 18px;
  }
  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form label {
    font-size: 14px;
  }
  .form-preview {
    font-size: 12px;
  }
  .footer-top {
    display: block;
  }
  .footer-top p {
    margin: 24px 0 20px;
  }
  .footer-bottom {
    gap: 15px;
    flex-wrap: wrap;
  }
  .footer-bottom small {
    width: 100%;
    margin: 0;
  }
  .footer-bottom span {
    margin-left: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .photo-frame img {
    transform: none !important;
  }
}
/* B2B transfer-printing revision */
.hero h1 {
  font-size: clamp(2.5rem, 3.5vw, 3.7rem);
}
.steps {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.steps h3 {
  font-size: 15px;
}
.product-photo img[data-parallax] {
  height: 125%;
  position: relative;
  top: -12.5%;
  transition: none;
}
.photo-frame img {
  height: 130%;
  top: -15%;
}
.motion-ready .reveal {
  opacity: var(--reveal-opacity, 1);
  transform: translateY(var(--reveal-offset, 0px));
  transition:
    opacity 0.18s linear,
    transform 0.18s ease-out;
}
.motion-ready .reveal:focus-within {
  opacity: 1 !important;
  transform: none !important;
}
@media (max-width: 1100px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .photo-frame img,
  .product-photo img[data-parallax] {
    height: 100%;
    top: 0;
    transform: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .product-photo img[data-parallax] {
    transform: none !important;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(1.25rem, 6vw, 2.7rem);
    white-space: normal;
  }
  .hero-copy {
    min-width: 0;
  }
}
/* Vertical hero and company profile */
.hero-copy {
  padding-top: 22px;
}
.hero h1.vertical-heading {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 0.42em;
  white-space: normal;
  font-size: clamp(2.4rem, 3.1vw, 3.4rem);
  line-height: 1.65;
  min-height: 365px;
  margin: 25px 0 30px;
}
.vertical-heading > span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.1em;
}
.vertical-heading > span:nth-child(2) {
  padding-top: 32px;
}
.vertical-heading > span:nth-child(3) {
  padding-top: 64px;
}
.hero-visual .photo-frame {
  height: 660px;
}
.hero {
  align-items: center;
}
.hero-sub {
  margin-top: 0;
}
nav {
  gap: 20px;
  font-size: 13px;
}
.company {
  background: var(--green);
  color: var(--paper);
}
.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding-bottom: 58px;
  border-bottom: 1px solid #ffffff30;
}
.company .eyebrow {
  color: #c7ceba;
}
.company-story h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.8rem);
}
.company-copy p {
  font-size: 15px;
  line-height: 2.15;
  margin-bottom: 20px;
  color: #e0e6db;
}
.company-copy p:last-child {
  margin-bottom: 0;
}
.company-information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  padding-top: 50px;
}
.company-information h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
.company dl {
  margin: 0;
}
.company dl > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff25;
  font-size: 13px;
  gap: 16px;
}
.company dt {
  color: #c4cfbe;
}
.company dd {
  margin: 0;
}
.company-map iframe {
  width: 100%;
  height: 310px;
  border: 0;
  display: block;
  background: #e9ece4;
}
.company-map p {
  font-size: 11px;
  color: #c4cfbe;
  margin-top: 10px;
}
.company-map > a {
  display: inline-block;
  font-size: 13px;
  border-bottom: 1px solid #ffffff50;
  margin-top: 12px;
}
.products + .custom {
  background: var(--paper);
}
@media (max-width: 1100px) {
  nav {
    gap: 12px;
    font-size: 12px;
  }
  .nav-cta {
    padding: 12px;
  }
  .nav-cta span {
    padding-left: 12px;
  }
  .brand {
    gap: 12px;
  }
  .brand-mark {
    padding-right: 12px;
  }
  .hero-visual .photo-frame {
    height: 580px;
  }
}
@media (max-width: 900px) and (min-width: 761px) {
  .brand-name {
    display: none;
  }
}
@media (max-width: 760px) {
  .hero h1.vertical-heading {
    font-size: clamp(1.85rem, 7.5vw, 2.8rem);
    min-height: 300px;
    margin: 20px 0 26px;
    gap: 0.4em;
    justify-content: center;
  }
  .vertical-heading > span:nth-child(2) {
    padding-top: 24px;
  }
  .vertical-heading > span:nth-child(3) {
    padding-top: 48px;
  }
  .hero-visual {
    align-self: stretch;
  }
  .hero-visual .photo-frame {
    height: 360px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .company-story,
  .company-information {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .company-story {
    padding-bottom: 35px;
  }
  .company-information {
    padding-top: 35px;
  }
  .company-copy p {
    font-size: 14px;
  }
  .company dl > div {
    grid-template-columns: 78px 1fr;
    gap: 10px;
    font-size: 12px;
  }
  .company-map iframe {
    height: 280px;
  }
  .company-story h2 {
    font-size: 1.85rem;
  }
  .hero {
    align-items: stretch;
  }
  nav {
    font-size: 14px;
  }
}

/* Full-bleed photographic hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  max-width: none;
  min-height: 780px;
  padding: 48px 7% 52px;
  background: #eee8de;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.hero-background img {
  position: absolute;
  width: 100%;
  height: calc(100% + 44px);
  top: -22px;
  object-fit: cover;
  object-position: right center;
  filter: none;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(247, 246, 242, 0.9),
    rgba(247, 246, 242, 0.65) 28%,
    transparent 60%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: 46%;
  max-width: 590px;
  padding: 0;
}
.hero h1.vertical-heading {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  min-height: 325px;
  margin: 20px 0 26px;
  justify-content: center;
}
.hero-description {
  color: #35483f;
  max-width: 490px;
}
.hero .eyebrow {
  font-size: 10px;
}
.hero .button {
  margin-top: 24px;
}
.hero-meta {
  margin-top: 25px;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 850px;
    padding-left: max(7%, calc((100vw - 1380px) / 2));
  }
}
@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    padding-left: 5%;
    min-height: 760px;
  }
  .hero-copy {
    width: 49%;
  }
  .hero:after {
    background: linear-gradient(
      90deg,
      rgba(247, 246, 242, 0.97),
      rgba(247, 246, 242, 0.82) 32%,
      transparent 78%
    );
  }
  .hero-sub {
    font-size: 15px;
  }
}
@media (max-width: 760px) {
  .hero {
    padding: 32px 7% 310px;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .hero h1.vertical-heading {
    min-height: 285px;
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    margin: 24px 0;
  }
  .hero-background {
    background: #eee8de;
  }
  .hero-background img {
    width: 100%;
    height: 360px;
    top: auto;
    bottom: 0;
    object-fit: cover;
    object-position: right bottom;
    transform: none !important;
  }
  .hero:after {
    background: linear-gradient(
      180deg,
      #f7f6f2 0%,
      #f7f6f2 62%,
      rgba(247, 246, 242, 0.92) 69%,
      transparent 82%
    );
  }
  .hero .text-link {
    display: flex;
    margin-left: 0;
  }
  .hero-meta {
    gap: 10px;
    font-size: 10px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-background img {
    transform: none !important;
  }
}

.hero-background .hero-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-background .hero-slide.is-active {
  opacity: 1;
}
.hero-slider-controls {
  position: absolute;
  z-index: 2;
  right: 7%;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-slider-controls button {
  font:
    12px Arial,
    sans-serif;
  color: var(--ink);
  background: #f7f6f2cc;
  border: 1px solid #29473c30;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  border-radius: 50%;
}
.hero-slider-controls button[aria-pressed="true"] {
  background: var(--green);
  color: white;
}
.hero-slider-controls button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
@media (max-width: 760px) {
  .hero-slider-controls {
    right: 18px;
    bottom: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-background .hero-slide {
    transition: none;
  }
}

/* Quiet dots with comfortable invisible hit areas. */
.hero-slider-controls {
  gap: 0;
  bottom: 24px;
}
.hero-slider-controls button {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  width: 32px;
  min-width: 32px;
  height: 44px;
  padding: 0;
}
.hero-slider-controls button[aria-pressed="true"] {
  background: transparent;
  color: var(--ink);
}
.hero-slider-controls [data-slide]:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #29473c;
  opacity: 0.3;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.hero-slider-controls [data-slide][aria-pressed="true"]:before {
  opacity: 0.85;
  transform: scale(1.2);
}
.hero-slider-controls .hero-pause {
  font-size: 11px;
  opacity: 0.55;
  margin-left: 4px;
}
.hero-slider-controls button:hover {
  opacity: 1;
}
.hero-slider-controls [data-slide]:hover:before {
  opacity: 1;
}
@media (max-width: 760px) {
  .hero-slider-controls {
    bottom: 14px;
  }
}

/* Scroll-led use cases, readable section markers and vertical workflow */
.use-cases {
  padding: 110px 8% 130px;
  overflow: hidden;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.use-case {
  position: relative;
  isolation: isolate;
  width: 76%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 50px;
}
.use-case:nth-child(2) {
  align-self: flex-end;
}
.use-case:nth-child(3) {
  margin-left: 4%;
}
.cloud {
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  background: #e6eade;
  border-radius: 46% 54% 43% 57% / 57% 48% 52% 43%;
  transform: translateY(var(--cloud-y, 0px));
}
.cloud:before,
.cloud:after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
  z-index: -1;
}
.cloud:before {
  width: 44%;
  height: 95%;
  left: 13%;
  top: -17%;
}
.cloud:after {
  width: 38%;
  height: 86%;
  right: 12%;
  top: -10%;
}
.use-case:nth-child(2) .cloud {
  background: #eee2d6;
  border-radius: 54% 46% 58% 42% / 50% 60% 40% 50%;
}
.use-case:nth-child(3) .cloud {
  background: #e2e8e5;
}
.use-case p {
  font: 500 clamp(25px, 3.6vw, 50px)/1.7 var(--serif);
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
.use-case small {
  display: block;
  font:
    10px/1.6 Arial,
    sans-serif;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  color: var(--muted);
}
.use-number {
  position: absolute;
  right: 9%;
  bottom: 22px;
  font:
    italic 20px Georgia,
    serif;
  color: #7e8b7c;
}
.mobile-break {
  display: none;
}
.motion-ready .use-case {
  opacity: var(--use-opacity, 1);
  transform: translateX(var(--use-x, 0px));
  will-change: transform, opacity;
}
.section-marker {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 32px;
  font-family: var(--sans);
}
.section-number {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 58px;
  height: 66px;
  border: 1px solid #a7b4a4;
  border-radius: 28px 28px 6px 6px;
  font:
    italic 27px Georgia,
    serif;
  color: var(--accent);
}
.section-marker p {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.section-marker small {
  font:
    10px/1.6 Arial,
    sans-serif;
  letter-spacing: 0.13em;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.company .section-number {
  color: #e0c5a3;
  border-color: #9cafa0;
}
.company .section-marker small {
  color: #c7ceba;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.steps:before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 70px;
  left: 55px;
  width: 1px;
  background: #bdc6b8;
}
.steps li {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 35px;
  border: 0;
  padding: 0 0 35px;
  position: relative;
}
.steps li:last-child {
  padding-bottom: 0;
}
.step-icon {
  height: 112px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid #bbc7b7;
  border-radius: 50%;
  position: relative;
}
.step-icon svg {
  width: 54px;
  height: 54px;
}
.step-body {
  background: #eeeee7;
  padding: 28px 34px;
  border-radius: 4px;
  position: relative;
}
.step-body:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 45px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #eeeee7;
}
.steps h3 {
  font-size: 22px;
  font-family: var(--serif);
  margin: 7px 0 10px;
}
.steps p {
  font-size: 14px;
  line-height: 2;
}
.steps small {
  font-size: 11px;
}
.faq {
  padding-top: 80px;
}
.question-number {
  font:
    12px Arial,
    sans-serif;
  color: var(--accent);
  min-width: 34px;
  padding-top: 5px;
}
.faq summary {
  display: flex;
  gap: 14px;
}
.faq details p {
  padding-left: 48px;
}
.faq-list {
  counter-reset: questions;
}
@media (max-width: 760px) {
  .use-cases {
    padding: 75px 6% 85px;
    gap: 55px;
  }
  .use-case {
    width: 96%;
    min-height: 205px;
    padding: 30px 14px;
  }
  .use-case:nth-child(3) {
    margin-left: 0;
  }
  .use-case p {
    font-size: clamp(23px, 6.4vw, 35px);
    line-height: 1.65;
  }
  .use-case small {
    font-size: 8px;
    margin-bottom: 13px;
  }
  .mobile-break {
    display: block;
  }
  .use-number {
    font-size: 15px;
    bottom: 15px;
  }
  .section-marker {
    gap: 14px;
    margin-bottom: 25px;
  }
  .section-number {
    width: 46px;
    height: 54px;
    font-size: 23px;
  }
  .section-marker p {
    font-size: 15px;
  }
  .section-marker small {
    font-size: 9px;
  }
  .steps li {
    grid-template-columns: 58px 1fr;
    gap: 17px;
    padding-bottom: 24px;
  }
  .steps:before {
    left: 28px;
    top: 30px;
    bottom: 80px;
  }
  .step-icon {
    height: 58px;
  }
  .step-icon svg {
    width: 33px;
    height: 33px;
  }
  .step-body {
    padding: 20px 18px;
  }
  .step-body:before {
    top: 20px;
  }
  .steps h3 {
    font-size: 18px;
    line-height: 1.6;
  }
  .steps p {
    font-size: 13px;
  }
  .faq {
    padding-top: 30px;
  }
  .faq summary {
    gap: 10px;
  }
  .faq details p {
    padding-left: 0;
  }
  .question-number {
    min-width: 30px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-ready .use-case {
    opacity: 1 !important;
    transform: none !important;
  }
  .cloud {
    transform: none !important;
  }
}

.contact-mail h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-mail > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 2;
}
.contact-email-address {
  display: block;
  font:
    clamp(18px, 2.2vw, 26px)/1.7 Georgia,
    serif;
  overflow-wrap: anywhere;
  margin: 24px 0;
}
.contact-mail .button {
  width: 100%;
}
.contact-mail-note {
  margin: 16px 0;
  color: var(--muted);
}



/* 用途コピーの背景：角丸カード＋細い輪郭線 */
.use-case .cloud,
.use-case:nth-child(2) .cloud,
.use-case:nth-child(3) .cloud {
  inset: 12px 0;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: 32px;
  background: #e6eade;
  transform: translateY(var(--cloud-y, 0px));
}

/* 雲の丸いパーツを、内側の枠線に変更 */
.use-case .cloud::before {
  inset: 12px;
  width: auto;
  height: auto;
  border: 1px solid rgba(41, 71, 60, 0.18);
  border-radius: 23px;
  background: transparent;
}

/* もう一方の丸いパーツは削除 */
.use-case .cloud::after {
  content: none;
}

.use-case:nth-child(2) .cloud {
  background: #eee2d6;
}

.use-case:nth-child(3) .cloud {
  background: #e2e8e5;
}

.use-case .use-number {
  right: 30px;
  bottom: 30px;
}

@media (max-width: 760px) {
  .use-case .cloud,
  .use-case:nth-child(2) .cloud,
  .use-case:nth-child(3) .cloud {
    border-radius: 24px;
  }

  .use-case .cloud::before {
    inset: 9px;
    border-radius: 17px;
  }

  .use-case .use-number {
    right: 23px;
    bottom: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .use-case .cloud,
  .use-case:nth-child(2) .cloud,
  .use-case:nth-child(3) .cloud {
    transform: none;
  }
}



/* 「できること」の見出しだけに適用 */
#custom .custom-type-ready .custom-type-letter {
  opacity: 0;
  transition: opacity 120ms ease;
}
#custom .custom-type-ready .custom-type-letter.is-visible {
  opacity: 1;
}
#custom .custom-type-ready .custom-type-letter.is-cursor {
  box-shadow: 2px 0 0 #bd5534;
}
@media (prefers-reduced-motion: reduce) {
  #custom .custom-type-ready .custom-type-letter {
    opacity: 1;
    transition: none;
    box-shadow: none;
  }
}


/* FAQの開閉アニメーション */
@supports (interpolate-size: allow-keywords) {
  .faq details {
    interpolate-size: allow-keywords;
  }

  .faq details::details-content {
    height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
      height 0.35s ease,
      opacity 0.25s ease,
      content-visibility 0.35s allow-discrete;
  }

  .faq details[open]::details-content {
    height: auto;
    opacity: 1;
  }
}

/* 動きを減らす設定に対応 */
@media (prefers-reduced-motion: reduce) {
  .faq details::details-content {
    transition: none;
  }
}




/* =========================================================
   3D MUG SIMULATOR
========================================================= */


/* INTRO
--------------------------------------------------------- */

.simulator-intro {
  padding: 150px 6vw 70px;
  background: #f3f1ec;
}

.simulator-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.simulator-intro h1 {
  margin: 35px 0 25px;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.simulator-lead {
  max-width: 620px;
  font-size: 16px;
  line-height: 2;
  color: #5d625e;
}


/* MAIN SIMULATOR
--------------------------------------------------------- */

.mug-simulator-section {
 
  background: #f3f1ec;
}

.mug-simulator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, 0.7fr);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(43, 71, 63, 0.22);
}


/* VIEWER
--------------------------------------------------------- */

.mug-view-column {
  min-width: 0;
  padding: 50px 50px 0 0;
}

.mug-viewer {
  position: relative;
  width: 100%;
  height: min(70vh, 720px);
  min-height: 520px;
  overflow: hidden;
  background: #ebe8e1;
}

.mug-viewer canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.mug-viewer canvas:active {
  cursor: grabbing;
}

.mug-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #2b473f;
}

.viewer-help {
  display: flex;
  gap: 30px;
  padding-top: 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #747a76;
}


/* CONTROL PANEL
--------------------------------------------------------- */

.mug-control-panel {
  padding: 50px 0 0 50px;
  border-left: 1px solid rgba(43, 71, 63, 0.22);
}

.control-heading {
  margin-bottom: 45px;
}

.control-heading small {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #69716d;
}

.control-heading h2 {
  margin: 0 0 15px;
  font-size: 30px;
  font-weight: 400;
}

.control-heading p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #6b706d;
}


/* CONTROLS
--------------------------------------------------------- */

.sim-control-block {
  padding: 25px 0;
  border-top: 1px solid rgba(43, 71, 63, 0.18);
}

.sim-control-label,
.range-heading label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #2b473f;
}


/* UPLOAD
--------------------------------------------------------- */

.design-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid #2b473f;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.design-upload:hover {
  background: #2b473f;
  color: #fff;
}

.design-upload .upload-icon {
  font-size: 22px;
  line-height: 1;
}

.design-upload > span:nth-child(2) {
  font-size: 13px;
}

.design-upload small {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.file-name {
  margin-top: 10px;
  overflow: hidden;
  font-size: 10px;
  color: #777;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* RANGE
--------------------------------------------------------- */

.range-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.range-heading output {
  min-width: 45px;
  font-size: 11px;
  text-align: right;
  color: #737975;
}

.sim-range {
  width: 100%;
  height: 2px;
  margin: 8px 0;
  border: 0;
  outline: 0;
  background: #c7c9c5;
  appearance: none;
  -webkit-appearance: none;
}

.sim-range::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid #f3f1ec;
  border-radius: 50%;
  background: #2b473f;
  box-shadow: 0 0 0 1px #2b473f;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.sim-range::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 2px solid #f3f1ec;
  border-radius: 50%;
  background: #2b473f;
  box-shadow: 0 0 0 1px #2b473f;
  cursor: pointer;
}


/* BUTTONS
--------------------------------------------------------- */

.simulator-buttons {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.sim-reset,
.sim-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 20px;
  border: 1px solid #2b473f;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
}

.sim-reset {
  background: transparent;
  color: #2b473f;
}

.sim-reset:hover {
  background: rgba(43, 71, 63, 0.06);
}

.sim-contact {
  justify-content: space-between;
  background: #2b473f;
  color: #fff;
}

.sim-contact:hover {
  opacity: 0.9;
}

.simulator-note {
  margin-top: 25px;
  font-size: 10px;
  line-height: 1.8;
  color: #777c79;
}


/* INFORMATION
--------------------------------------------------------- */

.simulator-information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 6vw;
  background: #2b473f;
  color: #fff;
}

.simulator-information > div,
.simulator-information > p {
  width: 100%;
  max-width: 650px;
}

.simulator-information > div {
  justify-self: end;
}

.simulator-information > p {
  justify-self: start;
}

.simulator-information small {
  display: block;
  margin-bottom: 25px;
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.65;
}

.simulator-information h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.3;
  font-weight: 400;
}

.simulator-information > p {
  align-self: end;
  margin: 0;
  font-size: 14px;
  line-height: 2.1;
  opacity: 0.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .mug-simulator-layout {
    grid-template-columns: 1fr;
  }

  .mug-view-column {
    padding: 40px 0;
  }

  .mug-control-panel {
    padding: 45px 0;
    border-top: 1px solid rgba(43, 71, 63, 0.22);
    border-left: 0;
  }

  .mug-viewer {
    height: 600px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

  .simulator-intro {
    padding: 110px 22px 45px;
  }

  .simulator-intro h1 {
    margin-top: 25px;
    font-size: 40px;
  }

  .simulator-lead {
    font-size: 14px;
  }


  .mug-simulator-section {
    padding: 0 22px 70px;
  }


  .mug-view-column {
    padding-top: 20px;
  }


  .mug-viewer {
    height: 430px;
    min-height: 430px;
  }


  .viewer-help {
    display: grid;
    gap: 5px;
  }


  .mug-control-panel {
    padding-top: 35px;
  }


  .control-heading h2 {
    font-size: 26px;
  }


  .simulator-information {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 22px;
  }


  .simulator-information > div,
  .simulator-information > p {
    justify-self: auto;
  }


  .simulator-information h2 {
    font-size: 34px;
  }

}

/* =========================================================
   MUG COLOR SELECTOR
========================================================= */

.mug-color-options {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.mug-color-chip {
  position: relative;
  width: 38px;
  height: 38px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.mug-color-chip:hover {
  transform: scale(1.08);
}

.mug-color-chip.is-active {
  border-color: #2b473f;
}

.mug-color-swatch {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.mug-color-chip.is-active::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border: 2px solid #f3f1ec;
  border-radius: 50%;
  background: #2b473f;
}


/* MOBILE */

@media (max-width: 640px) {

  .mug-color-options {
    gap: 10px;
  }

  .mug-color-chip {
    width: 36px;
    height: 36px;
  }

}