:root {
  --ink: #142334;
  --ink-2: #1e2c38;
  --green: #172319;
  --green-2: #253425;
  --cream: #f5f0e7;
  --paper: #fbfaf7;
  --gold: #b58a27;
  --gold-2: #d0aa50;
  --white: #fff;
  --muted: #69706f;
  --line: #e8e1d5;
  --shadow: 0 12px 35px rgba(22, 30, 24, .10);
  --radius: 7px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

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

.serif {
  font-family: 'Playfair Display', Georgia, serif
}

.gold {
  color: var(--gold)
}

.topbar {
  height: 34px;
  background: var(--green);
  background: #000000;
  ;
  color: #eae8df;
  /* font-size: 11px */
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.topbar span {
  white-space: nowrap
}

.navbar {
  height: 78px;
  background: #fff;
  /* background: var(--green); */
  /* color: #eae8df; */
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee8de
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px
}

.brand img {
  width: 168px;
  height: 62px;
  object-fit: contain;
  object-position: center
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 34px;
  /* font-size: 13px; */
  font-weight: 650
}

.navlinks a {
  height: 78px;
  display: flex;
  align-items: center;
  position: relative
}

.navlinks a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px
}

.search-btn {
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer
}

.store-btn,
.btn {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  padding: 12px 19px;
  border-radius: 3px;
  /* font-size: 12px; */
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .25s
}

.btn.secondary {
  background: transparent;
  color: var(--ink)
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(.97)
}

.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  color: #c09141;
}

.hero {
  min-height: 530px;
  display: grid;
  grid-template-columns: 46% 54%;
  background: var(--cream);
  overflow: hidden
}

.hero-copy {
  padding: 78px 30px 55px max(24px, calc((100vw - var(--container))/2));
  display: flex;
  flex-direction: column;
  justify-content: center
}

.eyebrow,
.section-kicker {
  letter-spacing: 4px;
  text-transform: uppercase;
  /* font-size: 10px; */
  font-weight: 800;
  color: var(--gold)
}

.hero h1 {
  font: 600 clamp(44px, 5vw, 67px)/1.05 'Playfair Display', serif;
  margin: 14px 0 12px;
  color: var(--ink);
  letter-spacing: -1px
}

.hero h1 span {
  display: block;
  color: var(--gold)
}

.hero h3 {
  font-size: 18px;
  margin: 0 0 12px;
  font-weight: 500
}

.hero p {
  max-width: 475px;
  color: #485056;
  /* font-size: 14px; */
  margin: 0 0 24px
}

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

.hero-points {
  display: flex;
  gap: 30px;
  margin-top: 28px
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
  /* font-size: 11px; */
  color: #444
}

.hero-point i {
  font-size: 22px;
  color: var(--gold)
}

.hero-visual {
  min-height: 530px;
  background: #d6d0c3;
  position: relative;
  overflow: hidden
}

.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
  height: 530px
}

.hero-carousel .item {
  height: 530px;
  overflow: hidden
}

.hero-carousel .item picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--gold)
}

.owl-theme .owl-dots .owl-dot span {
  background: #fff;
  opacity: 0.6
}

.category-strip {
  background: #fff;
  padding: 14px 0 22px
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px
}

.category-card {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease
}

.category-card .card-img {
  aspect-ratio: 1.2/1;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
  transition: box-shadow 0.4s ease
}

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

.category-card:hover {
  transform: translateY(-8px)
}

.category-card:hover .card-img {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2)
}

.category-card:hover .card-img img {
  transform: scale(1.15)
}

.category-card h4 {
  font: 600 15px 'Playfair Display', serif;
  margin: 8px 0 3px;
  transition: color 0.3s ease
}

.category-card:hover h4 {
  color: var(--gold)
}

.category-card p {
  /* font-size: 10px; */
  color: #6c6e6b;
  margin: 0
}

.banner {
  min-height: 360px;
  background: #1a251c url("images/tailoring-banner.jpg") center/cover no-repeat;
  position: relative;
  color: #fff
}

.banner:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 30, 18, .93) 0%, rgba(16, 30, 18, .68) 42%, rgba(16, 30, 18, .05) 76%)
}

.banner-inner {
  position: relative;
  z-index: 1;
  min-height: 360px;
  display: flex;
  align-items: center
}

.banner-copy {
  max-width: 470px;
  padding: 50px 0
}

.banner h2 {
  font: 500 42px/1.1 'Playfair Display', serif;
  margin: 8px 0 14px;
  letter-spacing: -0.5px
}

.banner p {
  /* font-size: 14px; */
  max-width: 430px;
  color: #e5e6df
}

.banner-features {
  display: flex;
  gap: 32px;
  margin-top: 28px
}

.banner-features div {
  /* font-size: 11px; */
  text-align: center
}

.banner-features i {
  display: block;
  font-size: 22px;
  margin-bottom: 6px;
  color: #fff
}

.secondary-banner {
  background: #1a251c url("images/hero-05.jpg") center/cover no-repeat;
}

.secondary-banner:before {
  background: linear-gradient(270deg, rgba(16, 30, 18, 0.93) 0%, rgba(16, 30, 18, 0.68) 42%, rgba(16, 30, 18, 0.05) 76%);
}

.secondary-banner .banner-copy {
  margin-left: auto;
  text-align: right;
}

.section {
  padding: 55px 0
}

.section-head {
  text-align: center;
  margin-bottom: 26px
}

.section-head h2 {
  font: 600 36px/1.1 'Playfair Display', serif;
  margin: 7px 0;
  color: var(--ink)
}

.section-head p {
  /* font-size: 14px; */
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 620px
}

.occasion-wrap {
  position: relative
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.occasion-card {
  background: #f4efe6;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15)
}

.occasion-card .image {
  aspect-ratio: 1.12/1;
  overflow: hidden
}

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

.occasion-card:hover img {
  transform: scale(1.15)
}

.occasion-card .copy {
  padding: 12px 10px 14px;
  text-align: center
}

.occasion-card h3 {
  font: 600 16px 'Playfair Display', serif;
  margin: 0 0 2px;
  transition: color 0.3s ease
}

.occasion-card:hover h3 {
  color: var(--gold)
}

.occasion-card p {
  /* font-size: 11px; */
  margin: 0;
  color: #666
}

.slider-dots {
  text-align: center;
  margin-top: 17px
}

.slider-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 4px
}

.slider-dots span:first-child {
  width: 19px;
  border-radius: 8px;
  background: var(--gold)
}

.trust {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px
}

.trust-item {
  padding: 24px 15px;
  text-align: center;
  border-right: 1px solid var(--line)
}

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

.trust-item i {
  font-size: 27px;
  color: var(--gold)
}

.trust-item h4 {
  /* font-size: 13px; */
  margin: 7px 0 2px
}

.trust-item p {
  /* font-size: 10px; */
  color: var(--muted);
  margin: 0
}

.stores {
  background: var(--green);
  color: #fff;
  padding: 52px 0
}

.store-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px
}

.store-head h2 {
  font: 500 36px 'Playfair Display', serif;
  margin: 4px 0 0
}

.store-head p {
  /* font-size: 13px; */
  color: #d4d9d0
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.store-card {
  background: #fff;
  color: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s ease, transform 0.4s ease
}

.store-card:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  transform: translateY(-10px)
}

.store-card .image {
  aspect-ratio: 1.1/1;
  overflow: hidden
}

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

.store-card:hover img {
  transform: scale(1.15)
}

.store-copy {
  padding: 14px 16px 18px
}

.store-copy h3 {
  font: 600 15px 'Playfair Display', serif;
  margin: 0 0 5px
}

.store-copy p {
  /* font-size: 11px; */
  margin: 0;
  color: #596067
}

.testimonials {
  background: #f6f0e5
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px
}

.testimonial {
  background: #fff;
  padding: 18px 20px;
  border-radius: 5px;
  box-shadow: 0 5px 20px rgba(30, 30, 20, .05)
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b271c, #c5a04d);
  float: left;
  margin-right: 12px
}

.stars {
  color: var(--gold);
  /* font-size: 12px; */
  letter-spacing: 1px
}

.testimonial p {
  clear: both;
  /* font-size: 12px; */
  color: #53595d;
  padding-top: 12px;
  margin: 0 0 12px
}

.testimonial strong {
  /* font-size: 12px */
}

.contact-cta {
  background: #f9f8f4;
  padding: 60px 0;
  border-top: 1px solid var(--line)
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px
}

.cta-left {
  max-width: 550px
}

.cta-title .section-kicker {
  margin-bottom: 8px;
  display: block
}

.cta-title h2 {
  font: 500 36px 'Playfair Display', serif;
  margin: 0 0 24px;
  color: var(--ink)
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  /* font-size: 12px; */
  color: #555
}

.contact-item .icon {
  font-size: 24px;
  color: var(--gold);
  font-style: normal;
  line-height: 1
}

.contact-item b {
  display: block;
  color: var(--ink);
  /* font-size: 14px; */
  margin-bottom: 3px;
  font-weight: 600
}

.cta-right {
  text-align: right
}

.big-text {
  font: 700 48px/1.1 'Playfair Display', serif;
  color: var(--ink);
  text-align: right;
  opacity: 0.1;
  letter-spacing: 2px
}

.footer {
  background: var(--green);
  color: #fff;
  padding: 40px 0 20px
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 35px;
  padding-bottom: 30px
}

.footer-brand img {
  width: 180px;
  height: 70px;
  object-fit: contain;
  object-position: left center
}

.footer p,
.footer a {
  color: #cfd4cd
}

.footer h4 {
  /* font-size: 12px; */
  margin: 0 0 13px;
  color: #fff
}

.footer-links {
  display: grid;
  gap: 8px
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px
}

.socials a {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  /* font-size: 10px; */
  color: #aeb6ad
}

.page-hero {
  min-height: 360px;
  background: #18231a center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative
}

.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 27, 17, .88), rgba(15, 27, 17, .3))
}

.page-hero .container {
  position: relative
}

.page-hero h1 {
  font: 500 50px Georgia, serif;
  margin: 10px 0
}

.breadcrumb {
  /* font-size: 11px; */
  color: #d8d9d1
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center
}

.about-image {
  border-radius: 6px;
  overflow: hidden
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover
}

.about-copy h2 {
  font: 500 36px Georgia, serif;
  margin: 8px 0 16px
}

.about-copy p {
  /* font-size: 14px; */
  color: #555
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-top: 22px
}

.checks div {
  /* font-size: 12px; */
  font-weight: 650
}

.checks i {
  color: var(--gold);
  margin-right: 7px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden
}

.service-card .image {
  aspect-ratio: 1.15/1
}

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

.service-card .copy {
  padding: 17px
}

.service-card h3 {
  font: 700 18px Georgia, serif;
  margin: 0 0 7px
}

.service-card p {
  /* font-size: 12px; */
  color: #666;
  margin: 0
}

.gallery-grid {
  columns: 3 280px;
  column-gap: 15px
}

.gallery-grid figure {
  break-inside: avoid;
  margin: 0 0 15px;
  border-radius: 6px;
  overflow: hidden;
  background: #ddd
}

.gallery-grid img {
  width: 100%;
  height: auto
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  text-align: center
}

.process-step {
  position: relative
}

.process-step .step-num {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 15px
}

.process-step h3 {
  font: 600 18px 'Playfair Display', serif;
  margin: 0 0 10px
}

.process-step p {
  font-size: 13px;
  color: var(--muted)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 25px
}

.info-panel,
.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 26px
}

.info-row {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line)
}

.info-row:last-child {
  border: 0
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2ead8;
  color: var(--gold);
  display: grid;
  place-items: center;
  flex: 0 0 auto
}

.info-row h4 {
  margin: 0 0 3px;
  /* font-size: 13px */
}

.info-row p {
  margin: 0;
  color: #666;
  /* font-size: 11px */
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px
}

.field {
  display: grid;
  gap: 5px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  /* font-size: 11px; */
  font-weight: 700
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #ddd9d0;
  border-radius: 4px;
  padding: 11px 12px;
  background: #fff;
  outline: 0
}

.field textarea {
  min-height: 125px;
  resize: vertical
}

@media(max-width:1050px) {
  .navlinks {
    gap: 18px
  }

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

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

@media(max-width:800px) {



  .container {
    width: min(100% - 30px, var(--container))
  }

  .topbar {
    height: auto;
    padding: 7px 0
  }

  .topbar .container {
    justify-content: center;
    flex-wrap: wrap
  }

  .topbar span:nth-child(2) {
    display: none
  }

  .navbar {
    height: 70px
  }

  .brand img {
    width: 150px;
    height: 58px
  }

  .navlinks,
  .nav-actions .search-btn,
  .store-btn {
    display: none
  }

  .menu-btn {
    display: block
  }

  .navlinks.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    background: #fff;
    background: var(--green);
    border-top: 1px solid var(--line);
    padding: 10px 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow)
  }

  .navlinks.open a {
    height: 48px;
    color: #c09141;
  }

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

  .hero-copy {
    padding: 58px 15px
  }

  .hero-visual {
    min-height: 430px
  }

  .hero-carousel,
  .hero-carousel .owl-stage-outer,
  .hero-carousel .owl-stage,
  .hero-carousel .owl-item {
    height: 430px
  }

  .hero-carousel .item {
    height: 430px
  }

  .hero-carousel .item picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-carousel .item img {
    object-position: center;
    object-fit: fill;
  }

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

  .occasion-grid,
  .store-grid,
  .testimonial-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr
  }

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

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

  .trust-item:nth-child(n+3) {
    border-top: 1px solid var(--line)
  }

  .cta-inner {
    grid-template-columns: 1fr 1fr
  }

  .cta-inner .btn {
    grid-column: 1/-1;
    justify-self: start
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .about-image img {
    height: 450px
  }
}

@media(max-width:520px) {
  .hero h1 {
    font-size: 43px
  }

  .hero-points {
    gap: 15px;
    flex-wrap: wrap
  }

  .category-grid,
  .occasion-grid,
  .store-grid,
  .testimonial-grid,
  .service-grid,
  .trust {
    grid-template-columns: 1fr
  }

  .trust-item {
    border-right: 0 !important;
    border-top: 1px solid var(--line) !important
  }

  .trust-item:first-child {
    border-top: 0 !important
  }

  .store-head {
    display: block
  }

  .banner h2 {
    font-size: 31px
  }

  .banner-features {
    gap: 16px
  }

  .cta-inner,
  .footer-top,
  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 5px
  }
}