

:root {
  --font-primary: 'Montserrat', sans-serif;
  --font-display: monospace;
  --color-dark-brown: #3A2D27;
  --color-medium-brown: #8B6B5C;
  --color-light-cream: #F5F0E6;
  --color-white: #FFFFFF;
  --color-accent: #C68B59;
  --color-success: #28a745;
  --color-error: #dc3545;
  --container-width: 1240px;
  --container-padding: 20px;
  --transition-duration: 0.4s;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-dark-brown);
  background-color: var(--color-light-cream);
  overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding) * 2);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-duration) ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(4rem, 6vw, 7.2rem); }
h2 { font-size: clamp(3.2rem, 5vw, 4.8rem); }
h3 { font-size: clamp(2.4rem, 4vw, 3.2rem); }

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  font-family: inherit;
}

.section {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5rem;
  transition: all var(--transition-duration) ease;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(198, 139, 89, 0.4);
}

.btn--primary:hover {
  background-color: #a96e3e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(198, 139, 89, 0.6);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-dark-brown);
  border: 2px solid var(--color-medium-brown);
}

.btn--secondary:hover {
  background-color: var(--color-medium-brown);
  color: var(--color-white);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 0;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  z-index: 101;
}

.header__logo svg {
  height: 5rem;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 4rem;
}

.nav__link {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-white);
}

.header--scrolled .nav__link {
    color: var(--color-dark-brown);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-duration) ease;
}

.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}

.header__burger {
  display: none;
  z-index: 101;
  color: var(--color-white);
}

.header--scrolled .header__burger {
    color: var(--color-dark-brown);
}

.header {
    transition: background-color var(--transition-duration), padding var(--transition-duration);
}

.header--scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem 0;
}


.hero {
  min-height: 100vh;
  background: url(images/1.webp) no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(58, 45, 39, 0.8) 0%, rgba(58, 45, 39, 0.2) 100%);
}

.hero__content {
  position: relative;
  max-width: 65rem;
}

.hero__subtitle {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero__title {
  margin-bottom: 3rem;
}

.hero__text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  max-width: 50rem;
  line-height: 1.8;
}

.promo {
  padding: 12rem 0;
  background-color: var(--color-white);
}

.promo__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: center;
}

.promo__image-wrapper {
  position: relative;
  clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
}

.promo__image {
  border-radius: 1rem;
}

.promo__content {
  max-width: 60rem;
}

.promo__subtitle {
  color: var(--color-medium-brown);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.promo__title {
  margin-bottom: 2.5rem;
}

.promo__text {
  margin-bottom: 3rem;
}

.promo__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.promo__list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.promo__list-item svg {
  color: var(--color-accent);
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.services {
  background-color: var(--color-light-cream);
  padding-bottom: 15rem;
}

.services__header {
  text-align: center;
  max-width: 70rem;
  margin: 0 auto 6rem;
}

.services__title {
  margin-bottom: 2rem;
}

.services-slider .swiper-slide {
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-duration), box-shadow var(--transition-duration);
  height: auto;
}

.services-slider .swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services-slider__image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

.services-slider__content {
  padding: 3rem;
}

.services-slider__title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.services-slider__text {
  margin-bottom: 2.5rem;
  color: var(--color-medium-brown);
}

.services-slider__link {
  font-weight: 700;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.services-slider__link svg {
  transition: transform var(--transition-duration);
}

.services-slider__link:hover svg {
  transform: translateX(5px);
}

.process {
    background-color: var(--color-dark-brown);
    color: var(--color-light-cream);
    padding: 12rem 0;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.process__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.process__header {
    position: sticky;
    top: 12rem;
}

.process__title {
    margin-bottom: 2rem;
}

.process__tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.process__tab-btn {
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(245, 240, 230, 0.6);
    text-align: left;
    border-left: 3px solid var(--color-medium-brown);
    transition: all var(--transition-duration);
    position: relative;
}

.process__tab-btn--active {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-accent);
}

.process__tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.process__tab-content--active {
    display: block;
}

.process__content-title {
    font-size: 3.6rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.process__content-text {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-reimagined {
    background-color: var(--color-white);
    padding: 12rem 0;
}

.gallery-reimagined__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.gallery-reimagined__title {
    margin-bottom: 2rem;
    z-index: 1;
    position: relative;
    color: #c68b59;
}
.gallery-reimagined__text
{
    z-index: 1;
    position: relative;
    color: #c68b59;
}

.gallery-reimagined__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    height: 120vh;
}

.gallery-reimagined__column {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.gallery-reimagined__image-wrapper {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.gallery-reimagined__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-reimagined__image-wrapper:hover img {
    transform: scale(1.05);
}

.faq-visual {
    background-color: var(--color-light-cream);
}

.faq-visual__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.faq-visual__title {
    margin-bottom: 2rem;
}

.faq-visual__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: flex-start;
}

.faq-visual__questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-visual__question-btn {
    width: 100%;
    padding: 2rem;
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--font-display);
    border-radius: 0.5rem;
    color: var(--color-medium-brown);
    transition: all var(--transition-duration) ease;
    border: 2px solid transparent;
}

.faq-visual__question-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    color: var(--color-dark-brown);
}

.faq-visual__question-btn--active {
    background-color: var(--color-white);
    color: var(--color-dark-brown);
    border-color: var(--color-accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-visual__answers {
    position: sticky;
    top: 12rem;
}

.faq-visual__answer-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.faq-visual__answer-pane--active {
    display: block;
}

.faq-visual__image-pane {
    width: 100%;
    height: 30rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 3rem;
}

.faq-visual__image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-visual__answer-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.contact-invite {
    position: relative;
    color: var(--color-white);
    padding: 15rem 0;
    text-align: center;
}

.contact-invite__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 45, 39, 0.8);
    backdrop-filter: blur(5px);
}

.contact-invite__container {
    position: relative;
    z-index: 2;
}

.contact-invite__content {
    max-width: 80rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6rem;
    border-radius: 1.5rem;
}

.contact-invite__title {
    margin-bottom: 2rem;
}

.contact-invite__text {
    font-size: 1.8rem;
    color: rgba(245, 240, 230, 0.8);
    margin-bottom: 4rem;
}

.contact-invite__details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.contact-invite__item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-invite__item svg {
    color: var(--color-accent);
    width: 2.8rem;
    height: 2.8rem;
}
.contact-invite__item:hover {
    color: var(--color-accent);
}

@media (max-width: 992px) {
    .gallery-reimagined__grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .gallery-reimagined__column:last-child {
        display: none;
    }
    .faq-visual__grid {
        grid-template-columns: 1fr;
    }
    .faq-visual__answers {
        position: static;
        margin-top: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-invite__details {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .contact-invite__content {
        padding: 4rem;
    }
}

@media (max-width: 600px) {
    .gallery-reimagined__grid {
        grid-template-columns: 1fr;
    }
    .gallery-reimagined__column:nth-child(2) {
        display: none;
    }
    .faq-visual__question-btn {
        font-size: 1.8rem;
        padding: 1.5rem;
    }
}

.footer {
    background-color: var(--color-dark-brown);
    color: var(--color-light-cream);
    padding: 8rem 0 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer__brand-text {
    margin-top: 2rem;
    color: rgba(245, 240, 230, 0.7);
}

.footer__title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-white);
}

.footer__list-item {
    margin-bottom: 1rem;
}

.footer__link {
    color: rgba(245, 240, 230, 0.7);
    transition: color var(--transition-duration);
}

.footer__link:hover {
    color: var(--color-white);
}

.footer__socials {
    display: flex;
    gap: 1.5rem;
}

.footer__social-link {
    width: 4rem;
    height: 4rem;
    border: 1px solid rgba(245, 240, 230, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-duration);
}

.footer__social-link:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.footer__bottom {
    text-align: center;
    border-top: 1px solid rgba(245, 240, 230, 0.2);
    padding-top: 3rem;
    font-size: 1.4rem;
    color: rgba(245, 240, 230, 0.6);
}

.footer__bottom-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 992px) {
    .section { padding: 8rem 0; }
    .promo__grid, .contact__grid { grid-template-columns: 1fr; }
    .promo__image-wrapper { margin-bottom: 4rem; }
    .process__container { grid-template-columns: 1fr; }
    .process__header { position: static; margin-bottom: 4rem; }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark-brown);
        transform: translateX(100%);
        transition: transform var(--transition-duration) ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav--open {
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav__link {
        font-size: 3rem;
        color: var(--color-white) !important;
    }

    .header__burger {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero__content { text-align: center; }
    .hero__text { margin-left: auto; margin-right: auto; }
    .gallery-slider__nav { display: none; }
    .contact__grid { padding: 3rem; }
    .contact-invite__item
    {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .btn { padding: 1.2rem 2.4rem; font-size: 1.4rem; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__socials { justify-content: center; }
}

.footer__logo
{
    filter: invert(1);
}

.about-hero {
    min-height: 70vh;
    background: linear-gradient(rgba(58, 45, 39, 0.6), rgba(58, 45, 39, 0.6)), url(images/23.webp) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.about-hero__title {
    margin-bottom: 1rem;
}

.about-hero__subtitle {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 400;
    color: rgba(245, 240, 230, 0.9);
}

.story {
    background-color: var(--color-light-cream);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.story__eyebrow {
    display: block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.story__title {
    margin-bottom: 3rem;
}

.story__text {
    margin-bottom: 2rem;
    color: var(--color-medium-brown);
}

.story__text:last-child {
    margin-bottom: 0;
}

.story__image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
}

.story__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artisans {
    background-color: var(--color-white);
}

.artisans__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.artisans__title {
    margin-bottom: 2rem;
}

.artisans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
}

.artisans__card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 45rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.artisans__card-image {
    width: 100%;
    height: 100%;
}

.artisans__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.artisans__card:hover .artisans__card-image img {
    transform: scale(1.05);
}

.artisans__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4rem 3rem 3rem;
    color: var(--color-white);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: translateY(25%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.8;
}

.artisans__card:hover .artisans__card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.artisans__card-name {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.artisans__card-role {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-accent);
}

.values {
    background-color: var(--color-dark-brown);
    color: var(--color-light-cream);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 15rem 0;
}

.values__header {
    text-align: center;
    margin-bottom: 8rem;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 6rem;
    text-align: center;
}

.values__icon {
    margin: 0 auto 2.5rem;
    color: var(--color-accent);
}

.values__item-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.values__item-text {
    color: rgba(245, 240, 230, 0.8);
    max-width: 35rem;
    margin: 0 auto;
}


@media (max-width: 992px) {
    .story__grid {
        grid-template-columns: 1fr;
    }
    .story__image-wrapper {
        margin-top: 4rem;
        height: 40rem;
    }
}

@media (max-width: 768px) {
    .values {
        clip-path: none;
        padding: 10rem 0;
    }
    .values__grid, .artisans__grid
    {
        grid-template-columns: 1fr;
    }
}

.services-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(58, 45, 39, 0.65), rgba(58, 45, 39, 0.65)), url(images/28.webp) no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.services-hero__title {
    margin-bottom: 1rem;
}

.services-hero__subtitle {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 400;
    color: rgba(245, 240, 230, 0.9);
}

.services-intro {
    background-color: var(--color-light-cream);
}

.services-intro__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 8rem;
    align-items: center;
}

.services-intro__title {
    margin-bottom: 3rem;
}

.services-intro__text {
    margin-bottom: 4rem;
    max-width: 55rem;
}

.services-intro__image-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.service-feature {
    background-color: var(--color-white);
}

.service-feature--reverse {
    background-color: var(--color-light-cream);
}

.service-feature__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
    align-items: center;
}

.service-feature--reverse .service-feature__grid {
    grid-template-areas: "content image";
}

.service-feature__image {
    grid-area: image;
    border-radius: 1rem;
    overflow: hidden;
    height: 50rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-feature__content {
    grid-area: content;
}

.service-feature__eyebrow {
    display: block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.service-feature__title {
    font-size: clamp(3rem, 4vw, 4rem);
    margin-bottom: 2.5rem;
}

.service-feature__description {
    margin-bottom: 3rem;
}

.service-feature__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.service-feature__list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
}

.service-feature__list-item svg {
    color: var(--color-accent);
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
}

.process-overview {
    background-color: var(--color-dark-brown);
    color: var(--color-light-cream);
}

.process-overview__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.process-overview__title {
    margin-bottom: 2rem;
}

.process-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 4rem;
}

.process-overview__step {
    padding: 4rem;
    border: 1px solid rgba(245, 240, 230, 0.2);
    border-radius: 1rem;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
}

.process-overview__number {
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-size: 6rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: rgba(245, 240, 230, 0.1);
}

.process-overview__step-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
}

.process-overview__step-text {
    color: rgba(245, 240, 230, 0.8);
}


@media (max-width: 992px) {
    .services-intro__grid, .service-feature__grid {
        grid-template-columns: 1fr;
    }
    .services-intro__image-wrapper {
        margin-top: 4rem;
    }
    .service-feature--reverse .service-feature__grid {
        grid-template-areas: unset;
    }
    .service-feature__image {
        grid-row: 1; /* Ensure image is always first on mobile */
        height: 40rem;
    }
    .service-feature__content {
        margin-top: 2rem;
    }
}

.service-display {
    background-color: var(--color-white);
    overflow: hidden;
}

.service-display__container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.service-display__content-wrapper {
    position: relative;
    z-index: 10;
}

.service-display__eyebrow {
    display: block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.service-display__title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    margin-bottom: 2.5rem;
}

.service-display__description {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 50rem;
}

.service-display__features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-display__feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-left: 3px solid var(--color-accent);
    background-color: rgba(245, 240, 230, 0.4);
    border-radius: 0 0.5rem 0.5rem 0;
    transition: background-color var(--transition-duration), transform var(--transition-duration);
}
.service-display__feature-item:hover {
    background-color: var(--color-light-cream);
    transform: translateX(10px);
}

.service-display__feature-item svg {
    color: var(--color-accent);
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.service-display__feature-item p {
    margin: 0;
    font-weight: 600;
}

.service-display__visuals-wrapper {
    position: relative;
    height: 60rem;
    width: 100%;
}

.service-display__bg-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-dark-brown);
    opacity: 0.04;
    z-index: 1;
    user-select: none;
}

.service-display__image {
    position: absolute;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-display__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-display__image--main {
    width: 90%;
    height: 85%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 85%);
    z-index: 2;
}
.service-display__image--main:hover {
    transform: scale(1.03) rotate(-1deg);
}


.service-display__image--detail {
    width: 45%;
    height: 45%;
    bottom: 0;
    left: 0;
    border: 5px solid var(--color-white);
    z-index: 3;
}
.service-display__image--detail:hover {
    transform: scale(1.05) translateY(-10px);
}

@media (max-width: 992px) {
    .service-display__container {
        grid-template-columns: 1fr;
    }
    .service-display__visuals-wrapper {
        margin-top: 6rem;
        height: 50rem;
    }
    .service-display__content-wrapper {
        text-align: center;
    }
    .service-display__description {
        margin-left: auto;
        margin-right: auto;
    }
    .service-display__features-list {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .service-display__visuals-wrapper {
        height: 40rem;
    }
    .service-display__image--main {
        width: 100%;
        height: 80%;
    }
    .service-display__image--detail {
        width: 50%;
        height: 40%;
        left: 5%;
    }
     .service-display__bg-number {
        font-size: 20rem;
    }
}

.service-art {
    background-color: var(--color-dark-brown);
    color: var(--color-light-cream);
    padding: 12rem 0;
    position: relative;
}

.service-art__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.service-art__content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    z-index: 5;
}

.service-art__eyebrow {
    display: block;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.service-art__title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    color: var(--color-white);
}

.service-art__description {
    color: rgba(245, 240, 230, 0.8);
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 50rem;
}

.service-art__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-art__list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-weight: 600;
}

.service-art__list-item svg {
    color: var(--color-accent);
    width: 2.4rem;
    height: 2.4rem;
    flex-shrink: 0;
}

.service-art__visual-pane {
    position: relative;
    height: 100%;
    min-height: 55rem;
}

.service-art__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-white);
    opacity: 0.05;
    z-index: 1;
    user-select: none;
}

.service-art__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 2;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-art__image-wrapper.aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service-art__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.service-art__image-wrapper:hover img {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .service-art__container {
        grid-template-columns: 1fr;
    }
    .service-art__visual-pane {
        margin-top: 6rem;
        min-height: 45rem;
        width: 100%;
        grid-row: 1;
    }
    .service-art__image-wrapper {
        width: 100%;
    }
    .service-art__content {
        grid-row: 2;
    }
    .service-feature__grid
    {
        display: block;
    }
}

@media (max-width: 600px) {
     .service-art__bg-text {
        font-size: 20rem;
    }
    .service-art__visual-pane {
        min-height: 35rem;
    }
}

.service-detail-hero {
    min-height: 80vh;
    background: linear-gradient(rgba(58, 45, 39, 0.5), rgba(58, 45, 39, 0.5)), url(images/34.webp) no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.service-detail-hero__eyebrow {
    display: block;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}

.service-detail-hero__title {
    max-width: 80rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.service-detail-hero__subtitle {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 400;
    color: rgba(245, 240, 230, 0.9);
    max-width: 60rem;
}

.philosophy-section {
    background: var(--color-light-cream);
}

.philosophy-section__grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 8rem;
    align-items: center;
}

.philosophy-section__image {
    border-radius: 1rem;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.philosophy-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-section__title {
    margin-bottom: 2rem;
}

.process-steps {
    background-color: var(--color-white);
}

.process-steps__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.process-steps__title {
    margin-bottom: 1.5rem;
}

.process-steps__timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.process-steps__timeline::before {
    content: '';
    position: absolute;
    top: 5.5rem;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent) 0%, rgba(198, 139, 89, 0.2) 100%);
    z-index: 1;
}

.process-steps__item {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.process-steps__number {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-accent);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    background-color: var(--color-white);
    padding-right: 2rem;
}

.process-steps__number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    background-color: var(--color-white);
    z-index: -1;
}

.process-steps__item-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.showcase-gallery {
    background: var(--color-light-cream);
}

.showcase-gallery__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}

.showcase-gallery__title {
    margin-bottom: 1.5rem;
}

.showcase-gallery__main {
    height: 60rem;
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 2rem;
}
.showcase-gallery__main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-gallery__thumbs {
    height: 12rem;
}

.showcase-gallery__thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.5;
    transition: opacity var(--transition-duration);
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
}

.showcase-gallery__thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.showcase-gallery__thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.materials-spotlight {
    background: var(--color-white);
}

.materials-spotlight__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 8rem;
}
.materials-spotlight__title {
    margin-bottom: 1.5rem;
}

.materials-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
}

.materials-spotlight__item {
    text-align: center;
}

.materials-spotlight__image-wrapper {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform var(--transition-duration), box-shadow var(--transition-duration);
}
.materials-spotlight__item:hover .materials-spotlight__image-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.materials-spotlight__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.materials-spotlight__name {
    font-size: 2rem;
    font-family: var(--font-primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .philosophy-section__grid {
        grid-template-columns: 1fr;
    }
    .philosophy-section__image {
        clip-path: none;
        height: 40rem;
        margin-bottom: 4rem;
    }
    .process-steps__timeline {
        gap: 2rem 4rem;
    }
}

@media (max-width: 768px) {
    .process-steps__timeline::before { display: none; }
    .process-steps__item {
        padding-top: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 3rem;
    }
    .process-steps__item:last-child {
        border-bottom: none;
    }
     .process-steps__number { margin-bottom: 1.5rem; }
     .process-steps__number::before { display: none; }
     .showcase-gallery__main { height: 40rem; }
     .showcase-gallery__thumbs { height: 8rem; }
}
.carving-studio {
    padding: 4rem 0;
    background-color: var(--color-light-cream);
}

.carving-studio__container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    min-height: calc(100vh - 8rem - 100px); 
}

.cs-controls {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.cs-controls__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cs-controls__title {
    font-size: 3.2rem;
}

.cs-tabs {
    display: flex;
    margin-bottom: 2rem;
    background-color: var(--color-light-cream);
    border-radius: 0.5rem;
    padding: 0.5rem;
}

.cs-tabs__btn {
    flex: 1;
    padding: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all var(--transition-duration);
}

.cs-tabs__btn--active {
    background-color: var(--color-white);
    color: var(--color-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cs-tab-content { display: none; }
.cs-tab-content--active { display: block; }

.cs-patterns__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cs-patterns__item {
    border: 2px solid var(--color-light-cream);
    border-radius: 0.5rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-duration);
}
.cs-patterns__item:hover {
    border-color: var(--color-accent);
    background-color: var(--color-light-cream);
}
.cs-patterns__item svg {
    width: 100%;
    height: auto;
    fill: none;
    stroke: var(--color-dark-brown);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cs-text__group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cs-text__input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.6rem;
}

.cs-actions {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.cs-actions__title {
    margin-bottom: 1.5rem;
}

.cs-controls__group {
    margin-bottom: 1.5rem;
}
.cs-controls__group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cs-controls__group input[type="range"] {
    width: 100%;
}

.cs-main-actions {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.cs-main-actions .btn {
    flex: 1;
    justify-content: center;
}

.cs-board-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cs-board {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.cs-element {
    position: absolute;
    cursor: grab;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0,0,0,0.7);
    padding: 1rem;
    border: 2px dashed transparent;
    transition: border-color var(--transition-duration);
}

.cs-element--selected {
    border-color: var(--color-accent);
    z-index: 1000;
}

.cs-element--pattern svg {
    width: 100px;
    height: 100px;
    pointer-events: none;
    fill: none;
    stroke: var(--color-dark-brown);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cs-element--text {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 1px 1px 0px rgba(255,255,255,0.2), -1px -1px 0px rgba(0,0,0,0.2);
}

@media(max-width: 992px) {
    .carving-studio__container {
        grid-template-columns: 1fr;
    }
    .cs-board-wrapper {
        min-height: 60vh;
    }
}

.legal-page {
    padding: 15rem 0 10rem;
    background-color: var(--color-white);
}

.legal-content {
    max-width: 80rem;
}

.legal-content h1 {
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.legal-content p, .legal-content li {
    color: var(--color-medium-brown);
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 3rem;
}

.reviews-panorama {
    background-color: var(--color-white);
    padding: 12rem 0;
}

.reviews-panorama__header {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto 6rem;
}

.reviews-panorama__title {
    margin-bottom: 2rem;
}

.reviews-panorama__viewport {
    position: relative;
    width: 100%;
    height: 50rem;
    cursor: grab;
    overflow: hidden;
    background-image: url('images/wood-pattern.png'), linear-gradient(to right, var(--color-light-cream), #e8e2d7);
    background-repeat: repeat, no-repeat;
    will-change: background-position;
}
.reviews-panorama__viewport:active {
    cursor: grabbing;
}

.reviews-panorama__track {
    display: flex;
    gap: 4rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 4rem;
    will-change: transform;
}

.review-card {
    flex-shrink: 0;
    width: 35rem;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(58, 45, 39, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(58, 45, 39, 0.1);
}

.review-card__project {
    display: block;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.review-card__text {
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 0 0 2rem 0;
    color: var(--color-dark-brown);
    flex-grow: 1;
}

.review-card__author {
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--color-medium-brown);
}
.review-card__author::before {
    content: '— ';
}

.reviews-panorama__progress-bar {
    width: 100%;
    max-width: 50rem;
    height: 3px;
    background-color: rgba(58, 45, 39, 0.1);
    margin: 4rem auto 0;
    border-radius: 3px;
    overflow: hidden;
}

.reviews-panorama__progress-bar-inner {
    width: 0;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: 3px;
}