@import url("https://fonts.googleapis.com/css2?family=Onest:wght@200;400&family=Instrument+Sans:wght@400&display=swap");
:root {
  --site-spacing: 52px;
}

@media (max-width: 1441px) {
  :root {
    --site-spacing: 40px;
  }
}
@media (max-width: 992px) {
  :root {
    --site-spacing: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --site-spacing: 16px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  color: #50443f;
  background-color: #94755a;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.site-container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: var(--site-spacing);
  padding-right: var(--site-spacing);
}

.d-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 1441px) {
  .d-grid {
    gap: 24px;
  }
}

.d-none {
  display: none;
}

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

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

.grid-of-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-of-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-of-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-of-6 {
  grid-template-columns: repeat(6, 1fr);
}

.grid-of-7 {
  grid-template-columns: repeat(7, 1fr);
}

.grid-of-8 {
  grid-template-columns: repeat(8, 1fr);
}

.grid-of-9 {
  grid-template-columns: repeat(9, 1fr);
}

.grid-of-10 {
  grid-template-columns: repeat(10, 1fr);
}

.grid-of-11 {
  grid-template-columns: repeat(11, 1fr);
}

.grid-of-12 {
  grid-template-columns: repeat(12, 1fr);
}

.grid-of-13 {
  grid-template-columns: repeat(13, 1fr);
}

.grid-of-14 {
  grid-template-columns: repeat(14, 1fr);
}

.grid-of-15 {
  grid-template-columns: repeat(15, 1fr);
}

.grid-of-16 {
  grid-template-columns: repeat(16, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-of-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .md\:grid-of-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-of-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md\:grid-of-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md\:grid-of-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .md\:grid-of-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .md\:grid-of-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .md\:grid-of-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .md\:grid-of-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .md\:grid-of-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .md\:grid-of-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .md\:grid-of-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .md\:grid-of-13 {
    grid-template-columns: repeat(13, 1fr);
  }
  .md\:grid-of-14 {
    grid-template-columns: repeat(14, 1fr);
  }
  .md\:grid-of-15 {
    grid-template-columns: repeat(15, 1fr);
  }
  .md\:grid-of-16 {
    grid-template-columns: repeat(16, 1fr);
  }
}
@media (min-width: 1024px) {
  .lg\:grid-of-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .lg\:grid-of-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .lg\:grid-of-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lg\:grid-of-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lg\:grid-of-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .lg\:grid-of-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .lg\:grid-of-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .lg\:grid-of-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .lg\:grid-of-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .lg\:grid-of-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .lg\:grid-of-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .lg\:grid-of-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .lg\:grid-of-13 {
    grid-template-columns: repeat(13, 1fr);
  }
  .lg\:grid-of-14 {
    grid-template-columns: repeat(14, 1fr);
  }
  .lg\:grid-of-15 {
    grid-template-columns: repeat(15, 1fr);
  }
  .lg\:grid-of-16 {
    grid-template-columns: repeat(16, 1fr);
  }
}
.col_span-1 {
  grid-column: span 1;
}

.col_span-2 {
  grid-column: span 2;
}

.col_span-3 {
  grid-column: span 3;
}

.col_span-4 {
  grid-column: span 4;
}

.col_span-5 {
  grid-column: span 5;
}

.col_span-6 {
  grid-column: span 6;
}

.col_span-7 {
  grid-column: span 7;
}

.col_span-8 {
  grid-column: span 8;
}

.col_span-9 {
  grid-column: span 9;
}

.col_span-10 {
  grid-column: span 10;
}

.col_span-11 {
  grid-column: span 11;
}

.col_span-12 {
  grid-column: span 12;
}

.col_span-13 {
  grid-column: span 13;
}

.col_span-14 {
  grid-column: span 14;
}

.col_span-15 {
  grid-column: span 15;
}

.col_span-16 {
  grid-column: span 16;
}

@media (min-width: 768px) {
  .md\:col_span-1 {
    grid-column: span 1;
  }
  .md\:col_span-2 {
    grid-column: span 2;
  }
  .md\:col_span-3 {
    grid-column: span 3;
  }
  .md\:col_span-4 {
    grid-column: span 4;
  }
  .md\:col_span-5 {
    grid-column: span 5;
  }
  .md\:col_span-6 {
    grid-column: span 6;
  }
  .md\:col_span-7 {
    grid-column: span 7;
  }
  .md\:col_span-8 {
    grid-column: span 8;
  }
  .md\:col_span-9 {
    grid-column: span 9;
  }
  .md\:col_span-10 {
    grid-column: span 10;
  }
  .md\:col_span-11 {
    grid-column: span 11;
  }
  .md\:col_span-12 {
    grid-column: span 12;
  }
  .md\:col_span-13 {
    grid-column: span 13;
  }
  .md\:col_span-14 {
    grid-column: span 14;
  }
  .md\:col_span-15 {
    grid-column: span 15;
  }
  .md\:col_span-16 {
    grid-column: span 16;
  }
}
@media (min-width: 1024px) {
  .lg\:col_span-1 {
    grid-column: span 1;
  }
  .lg\:col_span-2 {
    grid-column: span 2;
  }
  .lg\:col_span-3 {
    grid-column: span 3;
  }
  .lg\:col_span-4 {
    grid-column: span 4;
  }
  .lg\:col_span-5 {
    grid-column: span 5;
  }
  .lg\:col_span-6 {
    grid-column: span 6;
  }
  .lg\:col_span-7 {
    grid-column: span 7;
  }
  .lg\:col_span-8 {
    grid-column: span 8;
  }
  .lg\:col_span-9 {
    grid-column: span 9;
  }
  .lg\:col_span-10 {
    grid-column: span 10;
  }
  .lg\:col_span-11 {
    grid-column: span 11;
  }
  .lg\:col_span-12 {
    grid-column: span 12;
  }
  .lg\:col_span-13 {
    grid-column: span 13;
  }
  .lg\:col_span-14 {
    grid-column: span 14;
  }
  .lg\:col_span-15 {
    grid-column: span 15;
  }
  .lg\:col_span-16 {
    grid-column: span 16;
  }
}
.section-inner {
  max-width: 1920px;
  margin: 0 auto;
  padding-left: 551px;
  padding-right: 55px;
}
@media (max-width: 1400px) {
  .section-inner {
    padding-left: 30%;
    padding-right: 3%;
  }
}
@media (max-width: 1024px) {
  .section-inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.section-title {
  font-family: "Onest", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  color: #50443f;
  text-transform: lowercase;
}
.section-title--light {
  color: #94755a;
}
@media (max-width: 1441px) {
  .section-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
}

.body-text {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  color: #50443f;
}
.body-text > *:last-child {
  margin-bottom: 0;
}
.body-text--tan {
  color: #94755a;
}
@media (max-width: 768px) {
  .body-text {
    font-size: 16px;
  }
}

.section-band {
  width: 100%;
}
.section-band--terracotta {
  background-color: #a15b47;
}
.section-band--dark {
  background-color: #50443f;
}
.section-band--tan {
  background-color: #94755a;
}

.header {
  width: 100%;
  position: absolute;
  top: 160px;
  left: 0;
  z-index: 10;
}
.header__logo {
  height: 27px;
  width: auto;
}
@media (max-width: 1660px) {
  .header {
    top: 80px;
  }
}
@media (max-width: 991px) {
  .header {
    top: 80px;
    margin-top: 0%;
  }
}
@media (max-width: 768px) {
  .header {
    top: 30px;
  }
  .header__logo {
    height: 20px;
  }
}

.footer {
  padding: 40px 0;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__inner {
    margin-left: 0;
    gap: 16px;
  }
}
.footer__address, .footer__social {
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  color: #50443f;
  margin: 0;
}
@media (max-width: 768px) {
  .footer__address, .footer__social {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {
  .footer {
    padding: 20px 0;
  }
}

.gallery-section {
  width: 100%;
  margin-top: 110px;
}
.gallery-section .gallery-slider {
  width: 100%;
  overflow: hidden;
}
.gallery-section .swiper-slide {
  width: auto !important;
}
.gallery-section__item {
  height: 36.72vw;
  max-height: 705px;
  overflow: hidden;
  display: flex;
}
.gallery-section__item img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .gallery-section__item {
    height: 50vw;
  }
}
@media (max-width: 480px) {
  .gallery-section__item {
    height: 65vw;
  }
}
@media (max-width: 1440px) {
  .gallery-section {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .gallery-section {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .gallery-section {
    margin-top: 30px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hero .site-container,
.hero .d-grid {
  position: relative;
  z-index: 2;
}
.hero__text {
  color: #94755a;
  font-family: "Instrument Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  text-align: justify;
  margin-top: 172px;
}
@media (max-width: 1660px) {
  .hero__text {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 16px;
    margin-top: 20%;
  }
}
@media (max-width: 480px) {
  .hero__text {
    margin-top: 25%;
  }
}

.town-section {
  padding-top: 66px;
  padding-bottom: 0;
}
.town-section__body {
  margin-top: 100px;
  align-items: start;
}
@media (max-width: 1440px) {
  .town-section__body {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .town-section__body {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .town-section__body {
    margin-top: 30px;
  }
}
.town-section__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.town-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.town-section__quote {
  font-family: "Onest", sans-serif;
  font-weight: 200;
  font-size: 84px;
  line-height: 1.15;
  color: #50443f;
  margin-top: auto;
}
@media (max-width: 1660px) {
  .town-section__quote {
    font-size: 70px;
  }
}
@media (max-width: 1440px) {
  .town-section__quote {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .town-section__quote {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .town-section__quote {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .town-section__quote {
    font-size: 24px;
  }
}
@media (max-width: 1440px) {
  .town-section {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .town-section {
    padding-top: 40px;
  }
}
@media (max-width: 480px) {
  .town-section {
    padding-top: 30px;
  }
}

.people-section {
  padding-top: 137px;
  padding-bottom: 140px;
}
.people-section .body-text {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .people-section .body-text {
    margin-top: 20px;
  }
}
@media (max-width: 1440px) {
  .people-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .people-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .people-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.ajith-section {
  padding-top: 109px;
  padding-bottom: 0;
}
.ajith-section__content {
  margin-top: 7px;
}
.ajith-section__portrait {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ajith-section__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ajith-section__philosophy {
  padding-top: 95px;
  padding-bottom: 80px;
}
@media (max-width: 1440px) {
  .ajith-section__philosophy {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .ajith-section__philosophy {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1440px) {
  .ajith-section {
    padding-top: 80px;
  }
}
@media (max-width: 768px) {
  .ajith-section {
    padding-top: 50px;
  }
}
@media (max-width: 480px) {
  .ajith-section {
    padding-top: 30px;
  }
}

.hands-section {
  padding-top: 125px;
  padding-bottom: 110px;
  position: relative;
}
.hands-section__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: end;
}
@media (max-width: 1024px) {
  .hands-section__top {
    grid-template-columns: 1fr;
  }
}
.hands-section__artisan-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hands-section__artisan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hands-section__title-block {
  padding-bottom: 10px;
}
.hands-section__title-block .section-title {
  max-width: 400px;
}
@media (max-width: 768px) {
  .hands-section__title-block .section-title {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .hands-section__title-block {
    padding-left: 0;
    margin-top: 20px;
  }
}
.hands-section__bottom {
  margin-top: 110px;
}
@media (max-width: 1440px) {
  .hands-section__bottom {
    margin-top: 70px;
  }
}
@media (max-width: 768px) {
  .hands-section__bottom {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .hands-section__bottom {
    margin-top: 30px;
  }
}
.hands-section__workshop-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.hands-section__workshop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .hands-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .hands-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .hands-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.landscape-section {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  height: 100vh;
  margin-top: 102px;
}
.landscape-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1440px) {
  .landscape-section {
    margin-top: 70px;
    height: 70vh;
  }
}
@media (max-width: 768px) {
  .landscape-section {
    margin-top: 40px;
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .landscape-section {
    margin-top: 30px;
    height: 40vh;
  }
}
