/* home-intro */
.tc-home-intro {
    width: 100%;
    padding: 105px 5% 95px;
    background: #ffffff;
    box-sizing: border-box;
    overflow: hidden;
}
.tc-home-intro *,
.tc-home-intro *::before,
.tc-home-intro *::after {
    box-sizing: border-box;
}


.tc-home-intro__inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    text-align: center;
}


.tc-home-intro__label {
    display: block;
    margin-bottom: 22px;
    color: #9b8b6b;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 4px;
}


.tc-home-intro__title {
    max-width: 900px;
    margin: 0 auto 30px;
    color: #4c1d25;
    font-family:
        "Noto Serif SC",
        "Songti SC",
        "SimSun",
        serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.035em;
}


.tc-home-intro__text {
    max-width: 900px;
    margin: 0 auto;
    color: #777777;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.02em;
}


.tc-home-intro__services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 45px;
}

.tc-home-intro__service {
    position: relative;
    padding: 0 28px;
    color: #626262;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
}


.tc-home-intro__service:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 15px;
    background: #d6d2ca;
    transform: translateY(-50%);
}


.tc-home-intro__line {
    width: 42px;
    height: 1px;
    margin: 45px auto 0;
    background: #a6946d;
}


.tc-home-intro__reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.tc-home-intro__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .tc-home-intro {
        padding: 85px 6% 80px;
    }
    .tc-home-intro__title {
        font-size: 44px;
    }
    .tc-home-intro__text {
        max-width: 780px;
        font-size: 15px;
    }
    .tc-home-intro__service {
        padding: 0 20px;
    }
}


@media (max-width: 767px) {
    .tc-home-intro {
        padding: 65px 24px 65px;
    }
    .tc-home-intro__label {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 3px;
    }
    .tc-home-intro__title {
        margin-bottom: 24px;
        font-size: 32px;
        line-height: 1.45;
        letter-spacing: 0.02em;
    }
    .tc-home-intro__text {
        font-size: 14px;
        line-height: 1.9;
    }
    .tc-home-intro__services {
        margin-top: 35px;
        gap: 12px 0;
    }
    .tc-home-intro__service {
        width: 50%;
        padding: 5px 8px;
        font-size: 12px;
        text-align: center;
    }
    
    .tc-home-intro__service:not(:last-child)::after {
        display: none;
    }
    .tc-home-intro__line {
        margin-top: 35px;
    }
}


@media (prefers-reduced-motion: reduce) {
    .tc-home-intro__reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* home-faq */
.tc-home-faq-container {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1500px;
  
  background: #88AAA5;
}

.tc-home-faq-list {
  flex: 1;
  min-width: 250px;
}

.tc-home-faq-images {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.tc-home-faq-images img {
  width: 450px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  display: block;
  margin: 60px auto;
}

.tc-home-faq-item {
  cursor: pointer;
  padding: 10px 0;
}

.tc-home-faq-question {
  font-size: 35px;
  font-weight: 500;
  color: #F7F4EC;
  padding-left: 190px;
  transition: color 0.3s ease;
}

.tc-home-faq-item:hover .tc-home-faq-question {
  color: #E8D8B5;
}

.tc-home-faq-answer {
  font-size: 18px;
  color: #E5E3D9;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  opacity: 0;
  margin-left: 190px;
  transition:
    max-height 0.5s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
}

.tc-home-faq-item.active .tc-home-faq-answer {
  max-height: 100px;
  padding-top: 5px;
  opacity: 1;
}

.tc-home-faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 15px;
  border: 1px solid #E8D8B5;
  border-radius: 50%;
  color: #E8D8B5;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.tc-home-faq-link span {
  display: block;
  font-size: 20px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.tc-home-faq-link:hover {
  color: #F7F4EC;
  border-color: #F7F4EC;
  transform: scale(1.08);
}

.tc-home-faq-link:hover span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .tc-home-faq-container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .tc-home-faq-list {
    width: 100%;
    min-width: 0;
  }

  .tc-home-faq-images {
    width: 100%;
    min-width: 0;
    margin-top: 20px;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .tc-home-faq-images img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 20px auto;
  }

  .tc-home-faq-question {
    font-size: 18px;
    padding: 0;
    text-align: center;
  }

  .tc-home-faq-answer {
    font-size: 14px;
    padding: 0;
    margin-left: 0;
    text-align: center;
  }

  .tc-home-faq-link {
    width: 32px;
    height: 32px;
    margin-left: 10px;
  }

  .tc-home-faq-link span {
    font-size: 17px;
  }
}

/* home-purpose */
.tc-purpose {
    width: 100%;
    background: #f7f6f8;
    padding: 120px 6%;
    box-sizing: border-box;
}
.tc-purpose-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 60px;
}


.tc-purpose-title {
    position: relative;
}
.tc-purpose-title span {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #777;
    margin-bottom: 18px;
}
.tc-purpose-title h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}


.tc-purpose-content {
    max-width: 620px;
}
.tc-purpose-content p {
    margin: 0 0 35px;
    font-size: 18px;
    line-height: 2;
    color: #555;
}


.tc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s ease;
}
.tc-text-link span {
    font-size: 20px;
    transition: transform .3s ease;
}
.tc-text-link:hover {
    color: #5b4965;
}
.tc-text-link:hover span {
    transform: translateX(6px);
}


.tc-feature {
    width: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 650px;
    background: #fff;
    overflow: hidden;
}


.tc-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 650px;
}
.tc-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.6,.2,1);
}


.tc-feature:hover .tc-feature-image img {
    transform: scale(1.035);
}


.tc-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 9%;
    box-sizing: border-box;
    background: #f3f0f4;
}


.tc-feature-small-title {
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
}


.tc-feature-content h2 {
    margin: 0 0 28px;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #222;
}


.tc-feature-content p {
    max-width: 560px;
    margin: 0 0 38px;
    font-size: 17px;
    line-height: 2;
    color: #555;
}


.tc-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
    padding: 13px 0;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #777;
    transition: all .3s ease;
}
.tc-button span {
    font-size: 20px;
    transition: transform .3s ease;
}
.tc-button:hover {
    color: #5b4965;
    border-color: #5b4965;
}
.tc-button:hover span {
    transform: translateX(7px);
}


.tc-feature-content {
    transition: background .4s ease;
}
.tc-feature:hover .tc-feature-content {
    background: #efebf1;
}


@media (max-width: 900px) {
    .tc-purpose {
        padding: 90px 7%;
    }
    .tc-purpose-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .tc-purpose-title h2 {
        font-size: 40px;
    }

    .tc-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .tc-feature-image {
        min-height: 450px;
    }
    .tc-feature-image img {
        min-height: 450px;
    }
    .tc-feature-content {
        padding: 70px 8%;
    }
    .tc-feature-content h2 {
        font-size: 40px;
    }
}


@media (max-width: 600px) {
    .tc-purpose {
        padding: 65px 25px;
    }
    .tc-purpose-inner {
        gap: 28px;
    }
    .tc-purpose-title span {
        font-size: 11px;
        letter-spacing: 2px;
    }
    .tc-purpose-title h2 {
        font-size: 34px;
    }
    .tc-purpose-content p {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 28px;
    }

    .tc-feature {
        display: flex;
        flex-direction: column;
    }
    .tc-feature-image {
        width: 100%;
        height: 320px;
        min-height: 320px;
    }
    .tc-feature-image img {
        width: 100%;
        height: 320px;
        min-height: 320px;
    }
    .tc-feature-content {
        padding: 55px 25px 65px;
    }
    .tc-feature-small-title {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 18px;
    }
    .tc-feature-content h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }
    .tc-feature-content p {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 30px;
    }
}


.tc-purpose *,
.tc-feature * {
    box-sizing: border-box;
}
.tc-purpose p,
.tc-feature p,
.tc-purpose h2,
.tc-feature h2 {
    margin-top: 0;
}

/* new-fragrances */
.tc-innovation-section {
    width: 100%;
    padding: 90px 4%;
    box-sizing: border-box;
    background: #ffffff;
}


.tc-innovation-title {
    text-align: center;
    margin-bottom: 55px;
}
.tc-innovation-title span {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 12px;
}
.tc-innovation-title h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #222;
}


.tc-innovation-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    width: 100%;
}


.tc-innovation-card {
    position: relative;
    overflow: hidden;
    height: 210px;
    cursor: pointer;
    background: #eee;
}


.tc-innovation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    opacity: 1;
    transition:
        transform 0.8s cubic-bezier(.2,.7,.2,1),
        opacity 0.8s ease;
}


.tc-innovation-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    transition: background 0.6s ease;
}


.tc-innovation-content {
    position: absolute;
    left: 28px;
    right: 20px;
    bottom: 25px;
    color: #fff;
    transform: translateY(12px);
    transition: transform 0.6s ease;
}

.tc-innovation-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

.tc-innovation-content p {
    margin: 0;
    max-width: 280px;
    font-size: 13px;
    line-height: 1.8;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}


.tc-innovation-card:hover img {
    transform: scale(1.10);
    opacity: 0.68;
}


.tc-innovation-card:hover .tc-innovation-overlay {
    background: rgba(0,0,0,0.35);
}

.tc-innovation-card:hover .tc-innovation-content {
    transform: translateY(0);
}

.tc-innovation-card:hover .tc-innovation-content p {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1100px) {
    .tc-innovation-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tc-innovation-card {
        height: 350px;
    }
}


@media (max-width: 700px) {
    .tc-innovation-section {
        padding: 60px 20px;
    }
    .tc-innovation-title {
        margin-bottom: 35px;
    }
    .tc-innovation-title h2 {
        font-size: 30px;
    }
    .tc-innovation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .tc-innovation-card {
        height: 360px;
    }
    
    .tc-innovation-content p {
        opacity: 1;
        transform: none;
    }
    .tc-innovation-content {
        transform: none;
    }
}

.tc-innovation-section a { display: block; color: inherit; text-decoration: none; }

/* company-story */
.tc-story-section {
    --tc-story-color: #4b0712;
    --tc-story-bg: #f3f0ee;
    --tc-story-text: #626262;
    width: 100%;
    padding: 80px 0 95px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-story-section *,
.tc-story-section *::before,
.tc-story-section *::after {
    box-sizing: border-box;
}

.tc-story-title {
    width: 100%;
    margin: 0 0 52px;
    padding: 0 5%;
    color: var(--tc-story-color);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: clamp(40px, 4.2vw, 68px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.05em;
    text-align: center;
}

.tc-story-slider {
    position: relative;
    width: 100%;
}
.tc-story-viewport {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}
.tc-story-viewport.is-dragging {
    cursor: grabbing;
}

.tc-story-track {
    display: flex;
    gap: 30px;
    padding-left: 0;
    will-change: transform;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tc-story-slide {
    display: grid;
    grid-template-columns: minmax(360px, 44%) minmax(500px, 56%);
    flex: 0 0 calc(100vw - 260px);
    min-width: 0;
    min-height: 520px;
}

.tc-story-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 42px 55px 45px max(5vw, 60px);
    background: var(--tc-story-bg);
}
.tc-story-year {
    display: block;
    margin-bottom: 6px;
    color: var(--tc-story-color);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
}
.tc-story-heading {
    margin: 0 0 25px;
    color: var(--tc-story-color);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.04em;
}
.tc-story-description {
    max-width: 620px;
    margin: 0;
    color: var(--tc-story-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.02em;
}

.tc-story-image {
    position: relative;
    min-width: 0;
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    background: #ddd8d3;
}
.tc-story-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.tc-story-slide:hover .tc-story-image img {
    transform: scale(1.025);
}

.tc-story-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--tc-story-color);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}
.tc-story-arrow:hover {
    background: #6a1421;
}
.tc-story-arrow:active {
    transform: translateY(-50%) scale(0.94);
}
.tc-story-arrow svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.tc-story-arrow--prev {
    left: 8px;
}
.tc-story-arrow--next {
    right: 10px;
}

.tc-story-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

.tc-story-dots {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    align-items: center;
    justify-content: center;
}
.tc-story-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d4ccca;
    cursor: pointer;
    transition:
        width 0.3s ease,
        border-radius 0.3s ease,
        background-color 0.3s ease;
}
.tc-story-dot.is-active {
    width: 28px;
    border-radius: 20px;
    background: var(--tc-story-color);
}

@media (max-width: 1280px) {
    .tc-story-section {
        padding-top: 70px;
    }
    .tc-story-slide {
        grid-template-columns: 44% 56%;
        flex-basis: calc(100vw - 180px);
        min-height: 470px;
    }
    .tc-story-content {
        padding: 38px 42px 40px 5%;
    }
    .tc-story-image {
        min-height: 470px;
    }
    .tc-story-arrow {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 900px) {
    .tc-story-section {
        padding: 65px 0 75px;
    }
    .tc-story-title {
        margin-bottom: 38px;
        padding: 0 30px;
        font-size: 42px;
    }
    .tc-story-track {
        gap: 20px;
    }
    .tc-story-slide {
        grid-template-columns: 44% 56%;
        flex-basis: calc(100vw - 90px);
        min-height: 430px;
    }
    .tc-story-content {
        padding: 35px 30px;
    }
    .tc-story-year {
        font-size: 36px;
    }
    .tc-story-heading {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .tc-story-description {
        font-size: 14px;
        line-height: 1.85;
    }
    .tc-story-image {
        min-height: 430px;
    }
    .tc-story-arrow--prev {
        left: 5px;
    }
    .tc-story-arrow--next {
        right: 5px;
    }
}

@media (max-width: 640px) {
    .tc-story-section {
        padding: 52px 0 58px;
    }
    .tc-story-title {
        margin-bottom: 30px;
        padding: 0 22px;
        font-size: 34px;
        line-height: 1.35;
    }
    .tc-story-track {
        gap: 14px;
    }
    .tc-story-slide {
        display: flex;
        flex: 0 0 calc(100vw - 38px);
        min-height: auto;
        flex-direction: column;
    }
    .tc-story-content {
        min-height: 310px;
        padding: 32px 28px 34px;
    }
    .tc-story-year {
        font-size: 34px;
    }
    .tc-story-heading {
        margin-bottom: 16px;
        font-size: 22px;
    }
    .tc-story-description {
        font-size: 14px;
        line-height: 1.8;
    }
    .tc-story-image {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }
    .tc-story-arrow {
        top: auto;
        bottom: 68px;
        width: 42px;
        height: 42px;
        transform: none;
    }
    .tc-story-arrow:active {
        transform: scale(0.94);
    }
    .tc-story-arrow--prev {
        left: 14px;
    }
    .tc-story-arrow--next {
        right: 14px;
    }
    .tc-story-dots {
        margin-top: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-story-track,
    .tc-story-image img,
    .tc-story-arrow,
    .tc-story-dot {
        transition: none;
    }
}

/* company-team */
.tc-perfumers {
    width: 100%;
    padding: 80px 5% 100px;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-perfumers *,
.tc-perfumers *::before,
.tc-perfumers *::after {
    box-sizing: border-box;
}

.tc-perfumers__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.tc-perfumers__header {
    max-width: 800px;
    margin: 0 auto 85px;
    text-align: center;
}
.tc-perfumers__header h2 {
    margin: 0 0 18px;
    color: #431019;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.06em;
}
.tc-perfumers__header p {
    margin: 0;
    color: #8a8a8a;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.tc-perfumers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
    align-items: start;
}

.tc-perfumer-card {
    min-width: 0;
    text-align: center;
}

.tc-perfumer-card__image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    background: #eeeae5;
    aspect-ratio: 1 / 1;
}
.tc-perfumer-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.tc-perfumer-card:hover .tc-perfumer-card__image img {
    transform: scale(1.045);
}

.tc-perfumer-card__name {
    margin: 0 0 4px;
    color: #60534d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.tc-perfumer-card__position {
    display: block;
    margin-bottom: 15px;
    color: #60534d;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.tc-perfumer-card__description {
    max-width: 360px;
    margin: 0 auto;
    color: #6f6f6f;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
    .tc-perfumers {
        padding: 70px 5% 80px;
    }
    .tc-perfumers__header {
        margin-bottom: 60px;
    }
    .tc-perfumers__header h2 {
        font-size: 44px;
    }
    .tc-perfumers__grid {
        gap: 35px;
    }
    .tc-perfumer-card__image {
        max-width: 280px;
    }
    .tc-perfumer-card__description {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .tc-perfumers {
        padding: 55px 22px 65px;
    }
    .tc-perfumers__header {
        margin-bottom: 45px;
    }
    .tc-perfumers__header h2 {
        margin-bottom: 14px;
        font-size: 34px;
    }
    .tc-perfumers__header p {
        font-size: 14px;
        line-height: 1.8;
    }
    .tc-perfumers__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .tc-perfumer-card__image {
        max-width: 360px;
        margin-bottom: 18px;
    }
    .tc-perfumer-card__name {
        font-size: 18px;
    }
    .tc-perfumer-card__position {
        margin-bottom: 12px;
        font-size: 14px;
    }
    .tc-perfumer-card__description {
        max-width: 420px;
        font-size: 14px;
        line-height: 1.8;
    }
}

/* natural-support */
.tc-natural-support {
    width: 100%;
    padding: 90px 5% 95px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-natural-support *,
.tc-natural-support *::before,
.tc-natural-support *::after {
    box-sizing: border-box;
}

.tc-natural-support__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.tc-natural-support__title {
    margin: 0 0 20px;
    color: #4c1d25;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.025em;
}

.tc-natural-support__lead {
    margin: 0 0 16px;
    color: #929292;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.tc-natural-support__list {
    display: inline-block;
    margin: 0 auto 14px;
    padding-left: 24px;
    color: #747474;
    text-align: left;
}
.tc-natural-support__list li {
    margin-bottom: 8px;
    padding-left: 2px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
}
.tc-natural-support__list li:last-child {
    margin-bottom: 0;
}

.tc-natural-support__list li::marker {
    color: #777777;
    font-size: 0.7em;
}

.tc-natural-support__footer {
    max-width: 760px;
    margin: 0 auto;
    color: #929292;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.tc-natural-support__reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}
.tc-natural-support__reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .tc-natural-support {
        padding: 75px 6% 80px;
    }
    .tc-natural-support__title {
        font-size: 44px;
    }
    .tc-natural-support__lead,
    .tc-natural-support__footer,
    .tc-natural-support__list li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .tc-natural-support {
        padding: 58px 22px 62px;
    }
    .tc-natural-support__title {
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 1.4;
    }
    .tc-natural-support__lead {
        margin-bottom: 18px;
        font-size: 14px;
        line-height: 1.8;
    }
    .tc-natural-support__list {
        display: block;
        width: fit-content;
        max-width: 100%;
        margin-bottom: 18px;
        padding-left: 22px;
    }
    .tc-natural-support__list li {
        margin-bottom: 9px;
        font-size: 14px;
        line-height: 1.7;
    }
    .tc-natural-support__footer {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-natural-support__reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* applications-gallery */
.tc-scent-marketing {
    width: 100%;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-scent-marketing *,
.tc-scent-marketing *::before,
.tc-scent-marketing *::after {
    box-sizing: border-box;
}

.tc-scent-marketing-header {
    margin-bottom: 45px;
    padding: 0 30px;
    text-align: center;
}
.tc-scent-marketing-title {
    margin: 0;
    color: #222222;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 2px;
}
.tc-scent-marketing-subtitle {
    margin-top: 12px;
    color: #888888;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 3px;
}

.tc-scent-slider {
    position: relative;
    width: 100%;
    padding-left: 30px;
    overflow: hidden;
}

.tc-scent-track {
    display: flex;
    width: max-content;
    gap: 32px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.tc-scent-item {
    position: relative;
    flex: 0 0 398px;
    width: 398px;
}

.tc-scent-image {
    width: 100%;
    height: 605px;
    overflow: hidden;
    border-radius: 10px;
    background: #eeeeee;
}
.tc-scent-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2, .65, .25, 1);
}
.tc-scent-item:hover .tc-scent-image img {
    transform: scale(1.06);
}

.tc-scent-caption {
    display: flex;
    height: 42px;
    margin-top: 5px;
    align-items: center;
    gap: 10px;
    color: #555555;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.tc-scent-caption-arrow {
    display: flex;
    flex: 0 0 21px;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #9bbcc4;
    color: #ffffff;
    font-size: 14px;
    line-height: 1;
}

.tc-scent-next {
    position: absolute;
    top: 50%;
    right: 48px;
    z-index: 20;
    display: flex;
    width: 58px;
    height: 58px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #222222;
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.tc-scent-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.06);
}
.tc-scent-next:focus-visible {
    outline: 2px solid #294c41;
    outline-offset: 3px;
}

@media (max-width: 1200px) {
    .tc-scent-item {
        flex-basis: 360px;
        width: 360px;
    }
    .tc-scent-image {
        height: 540px;
    }
    .tc-scent-track {
        gap: 28px;
    }
}

@media (max-width: 767px) {
    .tc-scent-marketing {
        padding: 60px 0 55px;
    }
    .tc-scent-marketing-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    .tc-scent-marketing-title {
        font-size: 30px;
        letter-spacing: 1px;
    }
    .tc-scent-marketing-subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .tc-scent-slider {
        padding-left: 20px;
    }
    .tc-scent-track {
        gap: 15px;
    }
    .tc-scent-item {
        flex-basis: 82vw;
        width: 82vw;
    }
    .tc-scent-image {
        height: 500px;
        border-radius: 9px;
    }
    .tc-scent-caption {
        font-size: 14px;
    }
    .tc-scent-next {
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 27px;
    }
}

@media (max-width: 480px) {
    .tc-scent-image {
        height: 440px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-scent-track,
    .tc-scent-image img,
    .tc-scent-next {
        transition: none;
    }
}

/* oils-intro */
.tc-natural-intro {
    width: 100%;
    padding: 90px 5%;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-natural-intro *,
.tc-natural-intro *::before,
.tc-natural-intro *::after {
    box-sizing: border-box;
}

.tc-natural-intro__inner {
    display: grid;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    grid-template-columns: 46% 54%;
    align-items: center;
}

.tc-natural-intro__content {
    position: relative;
    z-index: 2;
    padding: 20px 65px 20px 0;
}
.tc-natural-intro__title {
    max-width: 520px;
    margin: 0 0 20px;
    color: #431019;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 47px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.02em;
}
.tc-natural-intro__text {
    max-width: 560px;
    margin: 0 0 12px;
    color: #858585;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.01em;
}
.tc-natural-intro__text:last-child {
    margin-bottom: 0;
}

.tc-natural-intro__media {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #eeeae4;
    aspect-ratio: 1.35 / 1;
}
.tc-natural-intro__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(.2, .65, .25, 1);
}

.tc-natural-intro__media:hover img {
    transform: scale(1.035);
}

@media (max-width: 1024px) {
    .tc-natural-intro {
        padding: 75px 5%;
    }
    .tc-natural-intro__inner {
        grid-template-columns: 48% 52%;
    }
    .tc-natural-intro__content {
        padding-right: 40px;
    }
    .tc-natural-intro__title {
        font-size: 39px;
    }
    .tc-natural-intro__text {
        font-size: 14px;
        line-height: 1.85;
    }
}

@media (max-width: 767px) {
    .tc-natural-intro {
        padding: 55px 22px 65px;
    }
    .tc-natural-intro__inner {
        display: flex;
        flex-direction: column;
    }
    .tc-natural-intro__content {
        width: 100%;
        padding: 0;
    }
    .tc-natural-intro__title {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.35;
    }
    .tc-natural-intro__text {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.85;
    }
    .tc-natural-intro__media {
        width: 100%;
        margin-top: 32px;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 420px) {
    .tc-natural-intro__title {
        font-size: 30px;
    }
}

/* oils-trends */
.tc-floral-oils {
    position: relative;
    width: 100%;
    min-height: 900px;
    padding: 55px 5% 70px;
    overflow: hidden;
    background: #ffffff;
    box-sizing: border-box;
}
.tc-floral-oils *,
.tc-floral-oils *::before,
.tc-floral-oils *::after {
    box-sizing: border-box;
}

.tc-floral-oils__decor {
    position: absolute;
    z-index: 1;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.tc-floral-oils__decor--left {
    bottom: 0;
    left: 0;
    width: 34%;
    max-width: 570px;
}

.tc-floral-oils__decor--right {
    right: 0;
    bottom: 0;
    width: 35%;
    max-width: 600px;
}

.tc-floral-oils__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.tc-floral-oils__header {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}
.tc-floral-oils__title {
    margin: 0 0 14px;
    color: #571c27;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.04em;
}
.tc-floral-oils__intro {
    max-width: 600px;
    margin: 0 auto;
    color: #999393;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.tc-floral-oils__list {
    display: flex;
    width: 100%;
    max-width: 570px;
    margin: 0 auto;
    flex-direction: column;
    gap: 30px;
}

.tc-floral-oils__item {
    position: relative;
    width: 310px;
    max-width: 100%;
    padding-left: 13px;
}

.tc-floral-oils__item:nth-child(odd) {
    align-self: flex-start;
}

.tc-floral-oils__item:nth-child(even) {
    align-self: flex-end;
}

.tc-floral-oils__item::before {
    content: "";
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: 0;
    width: 1px;
    background: #6a3038;
}

.tc-floral-oils__item h3 {
    margin: 0 0 5px;
    color: #68454a;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.tc-floral-oils__item p {
    margin: 0;
    color: #999393;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
}


.tc-floral-oils .tc-reveal {
    opacity: 0;
    transform: translateY(70px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

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

.tc-floral-oils__decor--left.tc-reveal {
    opacity: 0;
    transform: translate(-70px, 60px);
}

.tc-floral-oils__decor--right.tc-reveal {
    opacity: 0;
    transform: translate(70px, 60px);
}

.tc-floral-oils__decor--left.tc-reveal.is-visible,
.tc-floral-oils__decor--right.tc-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 1100px) {
    .tc-floral-oils {
        min-height: 850px;
        padding-top: 55px;
    }
    .tc-floral-oils__inner {
        max-width: 680px;
    }
    .tc-floral-oils__list {
        max-width: 540px;
    }
    .tc-floral-oils__decor--left {
        width: 31%;
    }
    .tc-floral-oils__decor--right {
        width: 32%;
    }
}

@media (max-width: 850px) {
    .tc-floral-oils {
        min-height: auto;
        padding: 60px 6% 80px;
    }
    .tc-floral-oils__inner {
        max-width: 620px;
    }
    .tc-floral-oils__title {
        font-size: 34px;
    }
    .tc-floral-oils__list {
        max-width: 500px;
        gap: 28px;
    }
    .tc-floral-oils__item {
        width: 280px;
    }
    .tc-floral-oils__decor {
        opacity: 0.22;
    }
    .tc-floral-oils__decor--left {
        width: 42%;
    }
    .tc-floral-oils__decor--right {
        width: 42%;
    }
    .tc-floral-oils__decor--left.tc-reveal.is-visible,
    .tc-floral-oils__decor--right.tc-reveal.is-visible {
        opacity: 0.22;
    }
}

@media (max-width: 767px) {
    .tc-floral-oils {
        min-height: auto;
        padding: 55px 22px 65px;
    }
    
    .tc-floral-oils__decor {
        display: none;
    }
    .tc-floral-oils__inner {
        max-width: 100%;
    }
    .tc-floral-oils__header {
        margin-bottom: 40px;
    }
    .tc-floral-oils__title {
        margin-bottom: 15px;
        font-size: 30px;
        line-height: 1.4;
    }
    .tc-floral-oils__intro {
        font-size: 13px;
        line-height: 1.8;
    }
    .tc-floral-oils__list {
        width: 100%;
        max-width: 100%;
        gap: 28px;
    }
    .tc-floral-oils__item,
    .tc-floral-oils__item:nth-child(odd),
    .tc-floral-oils__item:nth-child(even) {
        width: 100%;
        max-width: 100%;
        align-self: stretch;
    }
    .tc-floral-oils__item {
        padding-left: 15px;
    }
    .tc-floral-oils__item h3 {
        font-size: 19px;
    }
    .tc-floral-oils__item p {
        font-size: 13px;
        line-height: 1.7;
    }
    .tc-floral-oils .tc-reveal {
        transform: translateY(45px);
    }
    .tc-floral-oils .tc-reveal.is-visible {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-floral-oils .tc-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* diffuser-values */
.tc-fragrance-values {
    width: 100%;
    padding: 100px 5%;
    background: #ffffff;
    box-sizing: border-box;
    color: #7f7a78;
    font-family:
        "Noto Sans SC",
        "PingFang SC",
        "Microsoft YaHei",
        sans-serif;
}
.tc-fragrance-values * {
    box-sizing: border-box;
}


.tc-fragrance-values__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    column-gap: 100px;
    align-items: start;
}


.tc-fragrance-values__intro {
    position: relative;
    padding-top: 2px;
}


.tc-fragrance-values__intro h2 {
    margin: 0 0 22px;
    color: #54272B;
    font-family:
        "Noto Serif SC",
        "Songti SC",
        "STSong",
        "SimSun",
        serif;
    
    font-size: 26px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.04em;
}


.tc-fragrance-values__intro p {
    margin: 0;
    color: #A19B98;
    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


.tc-fragrance-values__intro::before {
    content: "";
    display: block;
    width: 38px;
    height: 1px;
    margin-bottom: 24px;
    background: #9B7F70;
}


.tc-fragrance-values__content {
    min-width: 0;
}


.tc-fragrance-values__lead {
    max-width: 950px;
    margin-bottom: 48px;
}

.tc-fragrance-values__lead p {
    margin: 0 0 7px;
    color: #85817F;
    
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

.tc-fragrance-values__lead p:last-child {
    margin-bottom: 0;
}


.tc-fragrance-values__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    column-gap: 70px;
    row-gap: 46px;
}

.tc-fragrance-values__item {
    min-width: 0;
}


.tc-fragrance-values__top {
    display: grid;
    grid-template-columns:
        190px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}


.tc-fragrance-values__image {
    width: 100%;
    height: 245px;
    margin: 0;
    overflow: hidden;
    background: #EFEBE5;
}

.tc-fragrance-values__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


.tc-fragrance-values__item:hover
.tc-fragrance-values__image img {
    transform: scale(1.055);
}


.tc-fragrance-values__heading {
    padding-top: 3px;
}


.tc-fragrance-values__heading h3 {
    margin: 0 0 10px;
    color: #54272B;
    font-family:
        "Noto Serif SC",
        "Songti SC",
        "STSong",
        "SimSun",
        serif;
    
    font-size: 22px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.04em;
}


.tc-fragrance-values__heading span {
    display: block;
    color: #A19B98;
    font-family:
        Arial,
        "Helvetica Neue",
        sans-serif;
    
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.tc-fragrance-values__description {
    margin: 16px 0 0;
    color: #85817F;
    
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.01em;
}


@media (max-width: 1180px) {
    .tc-fragrance-values {
        padding: 80px 5%;
    }
    .tc-fragrance-values__inner {
        grid-template-columns:
            220px minmax(0, 1fr);
        column-gap: 60px;
    }
    .tc-fragrance-values__grid {
        column-gap: 38px;
    }
    .tc-fragrance-values__top {
        grid-template-columns:
            150px minmax(0, 1fr);
        gap: 16px;
    }
    .tc-fragrance-values__image {
        height: 210px;
    }
}


@media (max-width: 900px) {
    .tc-fragrance-values {
        padding: 70px 6%;
    }
    .tc-fragrance-values__inner {
        display: block;
    }
    .tc-fragrance-values__intro {
        margin-bottom: 42px;
    }
    
    .tc-fragrance-values__intro h2 {
        font-size: 25px;
    }
    .tc-fragrance-values__lead {
        margin-bottom: 40px;
    }
    .tc-fragrance-values__grid {
        column-gap: 30px;
        row-gap: 42px;
    }
    .tc-fragrance-values__top {
        display: block;
    }
    .tc-fragrance-values__image {
        height: 280px;
        margin-bottom: 18px;
    }
}


@media (max-width: 640px) {
    .tc-fragrance-values {
        padding: 58px 22px;
    }
    .tc-fragrance-values__intro {
        margin-bottom: 32px;
    }
    .tc-fragrance-values__intro::before {
        margin-bottom: 18px;
    }


    .tc-fragrance-values__intro h2 {
        margin-bottom: 14px;
        
        font-size: 23px;
        line-height: 1.6;
    }

    .tc-fragrance-values__lead {
        margin-bottom: 36px;
    }


    .tc-fragrance-values__lead p {
        font-size: 16px;
        line-height: 1.85;
    }


    .tc-fragrance-values__grid {
        grid-template-columns: 1fr;
        row-gap: 42px;
    }

    .tc-fragrance-values__image {
        height: auto;
        aspect-ratio: 4 / 3;
    }


    .tc-fragrance-values__heading h3 {
        font-size: 21px;
    }


    .tc-fragrance-values__description {
        margin-top: 13px;
        
        font-size: 15px;
    }
}

/* diffuser-devices */
.tc-device-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 90px;
    background: #F3F0EC;
    box-sizing: border-box;
    font-family:
        "Noto Sans SC",
        "PingFang SC",
        "Microsoft YaHei",
        Arial,
        sans-serif;
}
.tc-device-section *,
.tc-device-section *::before,
.tc-device-section *::after {
    box-sizing: border-box;
}


.tc-device-header {
    max-width: 900px;
    margin: 0 auto 38px;
    padding: 0 40px;
}

.tc-device-title {
    margin: 0;
    padding: 0;
    line-height: 1.05;
    font-weight: 400;
}


.tc-device-title-light {
    display: block;
    font-family:
        "Noto Serif SC",
        "Songti SC",
        "STSong",
        "SimSun",
        serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 400;
    color: #B6AAA5;
}


.tc-device-title-dark {
    display: block;
    font-family:
        "Noto Serif SC",
        "Songti SC",
        "STSong",
        "SimSun",
        serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.12;
    font-weight: 400;
    color: #54272B;
}


.tc-device-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}


.tc-device-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 300px;
    margin-bottom: 34px;
}


.tc-device-feature-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.tc-device-feature-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.tc-device-feature:hover
.tc-device-feature-image img {
    transform: scale(1.035);
}


.tc-device-feature-text {
    display: flex;
    align-items: center;
    padding: 45px 42px;
    background: #54272B;
    color: #FFFFFF;
}

.tc-device-feature-text p {
    margin: 0;
    max-width: 500px;
    
    font-size: 15px;
    font-weight: 300;
    line-height: 1.95;
    letter-spacing: 0.02em;
    color: #F3EEEA;
}


.tc-device-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    width: 100%;
}


.tc-device-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 470px;
    background: #FFFFFF;
    overflow: hidden;
}

.tc-device-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition:
        transform 0.7s cubic-bezier(.22, 1, .36, 1);
}

.tc-device-product-image:hover img {
    transform: scale(1.025);
}


.tc-device-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 30px 35px 0;
}


.tc-device-product-intro {
    margin: 0 0 24px;
    
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #85817F;
}


.tc-device-point {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
    margin-bottom: 20px;
}


.tc-device-point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 3px;
    border: 1px solid #9B7F70;
    border-radius: 50%;
    font-size: 10px;
    color: #9B7F70;
}


.tc-device-point-title {
    margin: 0 0 5px;
    
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #54272B;
}


.tc-device-point-text {
    margin: 0;
    
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #85817F;
}


.tc-device-note {
    margin: 4px 0 22px;
    
    font-size: 14px;
    line-height: 1.8;
    color: #85817F;
}


.tc-device-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 22px;
    background: #54272B;
    border: 1px solid #54272B;
    color: #FFFFFF !important;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none !important;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.tc-device-button-arrow {
    margin-left: 15px;
    font-size: 17px;
    line-height: 1;
    transition:
        transform 0.3s ease;
}


.tc-device-button:hover {
    background: #9B7F70;
    border-color: #9B7F70;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

.tc-device-button:hover
.tc-device-button-arrow {
    transform: translateX(5px);
}


@media (max-width: 900px) {
    .tc-device-section {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .tc-device-header {
        padding: 0 25px;
    }

    .tc-device-content {
        padding: 0 25px;
    }

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

    .tc-device-feature-text {
        padding: 30px;
    }

    .tc-device-product-info {
        padding-right: 0;
    }
}


@media (max-width: 767px) {
    .tc-device-section {
        padding: 50px 18px 60px;
    }

    .tc-device-header {
        padding: 0;
        margin-bottom: 30px;
    }

    .tc-device-title-light,
    .tc-device-title-dark {
        font-size: 34px;
        line-height: 1.2;
    }

    .tc-device-content {
        padding: 0;
    }


    .tc-device-feature {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 28px;
    }

    .tc-device-feature-image {
        height: 240px;
    }

    .tc-device-feature-text {
        min-height: 190px;
        padding: 30px 24px;
    }


    .tc-device-feature-text p {
        font-size: 15px;
        line-height: 1.9;
    }


    .tc-device-product {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tc-device-product-image {
        min-height: 350px;
    }

    .tc-device-product-info {
        padding: 0 5px 20px;
    }

    .tc-device-product-intro {
        font-size: 15px;
        line-height: 1.9;
    }

    .tc-device-point {
        margin-bottom: 20px;
    }

    .tc-device-point-title {
        font-size: 15px;
    }

    .tc-device-point-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .tc-device-note {
        font-size: 14px;
    }

    .tc-device-button {
        margin-top: 5px;
    }
}

/* technology */
.tc-creative-center {
    --tc-main: #541923;
    --tc-hover: #71313b;
    --tc-line: #7a3943;
    --tc-background-image: url("http://www.xjxl.com.cn/wp-content/uploads/2026/09/d24.png");
    --tc-background-mask: 0.6;
    --tc-panel: rgba(255, 255, 255, 0.9);
    --tc-title: #541923;
    --tc-text: #686260;
    --tc-muted: #756b68;
    width: 100%;
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background-color: #ffffff;
    background-image: var(--tc-background-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}
.tc-creative-center *,
.tc-creative-center *::before,
.tc-creative-center *::after {
    box-sizing: border-box;
}

.tc-creative-center::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(255, 255, 255, var(--tc-background-mask));
    pointer-events: none;
}

.tc-creative-inner {
    position: relative;
    z-index: 1;
    width: 78%;
    max-width: 1420px;
    margin: 0 auto;
}

.tc-creative-title {
    margin-bottom: 28px;
}
.tc-creative-title h2 {
    margin: 0;
    color: var(--tc-main);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 2px;
}

.tc-creative-tabs {
    display: flex;
    margin-bottom: 24px;
    align-items: center;
    gap: 38px;
}
.tc-creative-tab {
    position: relative;
    flex-shrink: 0;
    padding: 0 0 14px;
    border: 0;
    background: transparent;
    color: var(--tc-muted);
    font-family: inherit;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}
.tc-creative-tab:hover {
    color: var(--tc-hover);
}
.tc-creative-tab.active {
    color: var(--tc-main);
    font-weight: 600;
}
.tc-creative-tab.active::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--tc-line);
}

.tc-creative-panel-wrap {
    position: relative;
    width: calc(
        100% + ((100vw - min(78vw, 1420px)) / 2)
    );
}
.tc-creative-panel {
    display: grid;
    min-height: 530px;
    grid-template-columns: min(39vw, 710px) 1fr;
    overflow: hidden;
    border: 1px solid rgba(84, 25, 35, 0.08);
    background: transparent;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.tc-creative-content {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 65px 55px;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--tc-panel);
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(.22, .61, .36, 1);
}

.tc-creative-content .en {
    margin-bottom: 18px;
    color: #9c6c67;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 4px;
}

.tc-creative-content h3 {
    margin: 0 0 25px;
    color: var(--tc-title);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.3;
}

.tc-creative-content p {
    margin: 0 0 18px;
    color: var(--tc-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}

.tc-creative-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 25px;
    padding-bottom: 5px;
    align-items: center;
    border-bottom: 1px solid rgba(84, 25, 35, 0.3);
    color: var(--tc-main);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 3px;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}
.tc-creative-more::after {
    content: "→";
    margin-left: 20px;
    color: var(--tc-line);
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}
.tc-creative-more:hover {
    border-color: var(--tc-hover);
    color: var(--tc-hover);
}
.tc-creative-more:hover::after {
    transform: translateX(6px);
}

.tc-creative-image {
    position: relative;
    width: 100%;
    height: 530px;
    overflow: hidden;
    background: #eae4df;
}
.tc-creative-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    transform: scale(1);
    transition:
        transform 0.8s cubic-bezier(.2, .6, .2, 1),
        opacity 0.45s ease;
}
.tc-creative-panel:hover .tc-creative-image img {
    transform: scale(1.035);
}

.tc-slide-from-right .tc-creative-content {
    opacity: 0;
    transform: translateX(70px);
}
.tc-slide-from-right .tc-creative-image img {
    opacity: 0;
    transform: translateX(60px) scale(1.035);
}
.tc-slide-from-left .tc-creative-content {
    opacity: 0;
    transform: translateX(-70px);
}
.tc-slide-from-left .tc-creative-image img {
    opacity: 0;
    transform: translateX(-60px) scale(1.035);
}

.tc-creative-controls {
    display: flex;
    padding: 25px 0 55px;
    align-items: center;
    justify-content: space-between;
    color: var(--tc-main);
}
.tc-creative-arrow {
    display: flex;
    padding: 0;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    color: #756b68;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2px;
    cursor: pointer;
    user-select: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}
.tc-creative-arrow:hover {
    color: var(--tc-main);
}
.tc-creative-prev:hover {
    transform: translateX(-4px);
}
.tc-creative-next:hover {
    transform: translateX(4px);
}
.tc-creative-arrow span {
    color: var(--tc-line);
    font-size: 25px;
    line-height: 1;
}
.tc-creative-arrow .tc-arrow-label {
    color: inherit;
    font-size: 13px;
    line-height: 1.5;
}

.tc-creative-counter {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a19895;
    font-size: 12px;
    letter-spacing: 3px;
}
.tc-creative-counter .current {
    color: var(--tc-main);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .tc-creative-inner {
        width: 90%;
    }
    .tc-creative-panel-wrap {
        width: calc(100% + ((100vw - 90vw) / 2));
    }
    .tc-creative-panel {
        grid-template-columns: min(45vw, 550px) 1fr;
    }
    .tc-creative-content {
        padding: 50px 40px;
    }
}

@media (max-width: 767px) {
    .tc-creative-center {
        padding-top: 50px;
    }
    .tc-creative-inner {
        width: 92%;
    }
    .tc-creative-title {
        margin-bottom: 25px;
    }
    .tc-creative-title h2 {
        font-size: 30px;
        letter-spacing: 1px;
    }
    .tc-creative-tabs {
        gap: 28px;
        padding-bottom: 3px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }
    .tc-creative-tabs::-webkit-scrollbar {
        display: none;
    }
    .tc-creative-tab {
        padding-bottom: 12px;
        font-size: 15px;
    }
    .tc-creative-panel-wrap {
        width: 100%;
    }
    .tc-creative-panel {
        display: flex;
        min-height: auto;
        flex-direction: column;
    }
    .tc-creative-content {
        order: 1;
        padding: 42px 30px;
        background: rgba(255, 255, 255, 0.93);
    }
    .tc-creative-content h3 {
        margin-bottom: 20px;
        font-size: 25px;
    }
    .tc-creative-content p {
        font-size: 15px;
        line-height: 1.9;
    }
    .tc-creative-image {
        order: 2;
        height: 350px;
    }
    .tc-creative-controls {
        padding: 22px 0 40px;
    }
    .tc-creative-arrow {
        gap: 8px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    .tc-creative-arrow .tc-arrow-label {
        font-size: 11px;
    }
    .tc-creative-counter {
        font-size: 10px;
    }
    .tc-slide-from-right .tc-creative-content {
        transform: translateX(35px);
    }
    .tc-slide-from-left .tc-creative-content {
        transform: translateX(-35px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .tc-creative-content,
    .tc-creative-image img,
    .tc-creative-arrow,
    .tc-creative-more::after {
        transition: none;
    }
}

/* fragrance-matching */
.tc-matching {
    width: 100%;
    padding: 120px 6%;
    background: #f7f6f8;
    box-sizing: border-box;
}
.tc-matching *,
.tc-matching *::before,
.tc-matching *::after {
    box-sizing: border-box;
}

.tc-matching .tc-matching-inner {
    display: grid;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
    gap: 70px;
    align-items: start;
}

.tc-matching .tc-matching-title {
    min-width: 0;
    padding-top: 5px;
}
.tc-matching .tc-matching-label {
    display: block;
    margin-bottom: 18px;
    color: #887c82;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.18em;
    overflow-wrap: anywhere;
}
.tc-matching .tc-matching-title h2 {
    margin: 0;
    color: #222222;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.03em;
}
.tc-matching .tc-matching-line {
    width: 42px;
    height: 1px;
    margin-top: 27px;
    background: #5b4965;
}

.tc-matching .tc-matching-content {
    width: 100%;
    min-width: 0;
    max-width: 680px;
}
.tc-matching .tc-matching-intro {
    margin: 0 0 35px;
    color: #4f4f4f;
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
}
.tc-matching .tc-matching-services {
    display: grid;
    margin-bottom: 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
}
.tc-matching .tc-matching-service {
    position: relative;
    min-width: 0;
    padding: 0 0 0 17px;
}
.tc-matching .tc-matching-service::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 3px;
    left: 0;
    width: 1px;
    background: #b8aeb9;
}
.tc-matching .tc-matching-service h3 {
    margin: 0 0 12px;
    color: #2d2a2d;
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}
.tc-matching .tc-matching-service p {
    margin: 0;
    color: #696669;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}
.tc-matching .tc-matching-note {
    margin: 0 0 30px;
    color: #696669;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
}

.tc-matching .tc-matching-link {
    display: inline-flex;
    padding-bottom: 6px;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #a69ba8;
    color: #222222;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        gap 0.3s ease;
}
.tc-matching .tc-matching-link:hover {
    gap: 19px;
    border-color: #5b4965;
    color: #5b4965;
}
.tc-matching .tc-matching-link:focus-visible {
    outline: 2px solid #5b4965;
    outline-offset: 5px;
}
.tc-matching .tc-matching-link__arrow {
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 900px) {
    .tc-matching {
        padding: 90px 7%;
    }
    .tc-matching .tc-matching-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 42px;
    }
    .tc-matching .tc-matching-title h2 {
        font-size: 40px;
    }
    .tc-matching .tc-matching-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .tc-matching {
        padding: 65px 24px;
    }
    .tc-matching .tc-matching-inner {
        gap: 34px;
    }
    .tc-matching .tc-matching-label {
        margin-bottom: 14px;
        font-size: 11px;
    }
    .tc-matching .tc-matching-title h2 {
        font-size: 34px;
    }
    .tc-matching .tc-matching-line {
        margin-top: 20px;
    }
    .tc-matching .tc-matching-intro {
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.9;
    }
    .tc-matching .tc-matching-services {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
        margin-bottom: 30px;
    }
    .tc-matching .tc-matching-service h3 {
        margin-bottom: 9px;
        font-size: 20px;
    }
    .tc-matching .tc-matching-service p,
    .tc-matching .tc-matching-note {
        font-size: 14px;
        line-height: 1.85;
    }
}
@media (prefers-reduced-motion: reduce) {
    .tc-matching .tc-matching-link {
        transition: none;
    }
}

/* technical-faq */
.tc-fragrance-faq {
    --tc-wine: #541923;
    --tc-wine-hover: #71313b;
    --tc-text: #686260;
    --tc-line: rgba(84, 25, 35, 0.20);
    --tc-white: #ffffff;
    width: 100%;
    padding: 90px 24px;
    background: var(--tc-white);
    box-sizing: border-box;
}
.tc-fragrance-faq *,
.tc-fragrance-faq *::before,
.tc-fragrance-faq *::after {
    box-sizing: border-box;
}
.tc-fragrance-faq .tc-fragrance-faq__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.tc-fragrance-faq .tc-fragrance-faq__title {
    margin: 0 0 55px;
    color: var(--tc-wine);
    font-family: "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
}

.tc-fragrance-faq .tc-fragrance-faq__list {
    width: 100%;
    border-top: 1px solid var(--tc-line);
}
.tc-fragrance-faq .tc-fragrance-faq__item {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--tc-line);
    background: transparent;
}

.tc-fragrance-faq .tc-fragrance-faq__question {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 96px;
    margin: 0;
    padding: 25px 70px 25px 20px;
    color: var(--tc-wine);
    background: transparent;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    list-style: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tc-fragrance-faq .tc-fragrance-faq__question::-webkit-details-marker {
    display: none;
}
.tc-fragrance-faq .tc-fragrance-faq__question::marker {
    content: "";
}
.tc-fragrance-faq .tc-fragrance-faq__question:hover,
.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__question {
    color: var(--tc-wine-hover);
}

.tc-fragrance-faq .tc-fragrance-faq__question:focus-visible {
    outline: 2px solid var(--tc-wine);
    outline-offset: -3px;
}

.tc-fragrance-faq .tc-fragrance-faq__icon {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(84, 25, 35, 0.38);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}
.tc-fragrance-faq .tc-fragrance-faq__icon::before,
.tc-fragrance-faq .tc-fragrance-faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 1px;
    background: var(--tc-wine);
    transform: translate(-50%, -50%);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}
.tc-fragrance-faq .tc-fragrance-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__icon {
    background: var(--tc-wine);
    border-color: var(--tc-wine);
    transform: translateY(-50%) rotate(180deg);
}
.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__icon::before,
.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__icon::after {
    background: var(--tc-white);
}
.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.tc-fragrance-faq .tc-fragrance-faq__answer {
    overflow: hidden;
}
.tc-fragrance-faq .tc-fragrance-faq__item[open]
.tc-fragrance-faq__answer {
    animation: tcFragranceFaqOpen 0.35s ease;
}
.tc-fragrance-faq .tc-fragrance-faq__answer-inner {
    max-width: 850px;
    padding: 0 70px 34px 20px;
    color: var(--tc-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}
.tc-fragrance-faq .tc-fragrance-faq__answer-inner p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}
@keyframes tcFragranceFaqOpen {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .tc-fragrance-faq {
        padding: 60px 20px;
    }
    .tc-fragrance-faq .tc-fragrance-faq__title {
        margin-bottom: 38px;
        font-size: 36px;
    }
    .tc-fragrance-faq .tc-fragrance-faq__question {
        min-height: 82px;
        padding: 20px 55px 20px 5px;
        font-size: 17px;
        line-height: 1.55;
    }
    .tc-fragrance-faq .tc-fragrance-faq__icon {
        right: 2px;
        width: 34px;
        height: 34px;
    }
    .tc-fragrance-faq .tc-fragrance-faq__answer-inner {
        padding: 0 45px 28px 5px;
        font-size: 15px;
        line-height: 1.8;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tc-fragrance-faq .tc-fragrance-faq__item[open]
    .tc-fragrance-faq__answer {
        animation: none;
    }
    .tc-fragrance-faq .tc-fragrance-faq__question,
    .tc-fragrance-faq .tc-fragrance-faq__icon,
    .tc-fragrance-faq .tc-fragrance-faq__icon::before,
    .tc-fragrance-faq .tc-fragrance-faq__icon::after {
        transition: none;
    }
}

/* Content remains readable when JS is unavailable. Animation is opt-in per element. */
.tc-home-intro__reveal:not(.tc-reveal-pending),
.tc-natural-support__reveal:not(.tc-reveal-pending),
.tc-floral-oils .tc-reveal:not(.tc-reveal-pending) {
  opacity: 1;
  transform: none;
}
.tc-home-faq-container:not(.tc-faq-ready) .tc-home-faq-answer {
  opacity: 1;
  max-height: none;
  padding-top: 5px;
}
.tc-home-faq-container .tc-home-faq-item.active .tc-home-faq-answer {
  max-height: none;
}
.tc-home-faq-question:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .tc-home-intro__reveal,
  .tc-natural-support__reveal,
  .tc-floral-oils .tc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
