:root {
  --green-primary: #1a3a2a;
  --green-deep: #0f2a1a;
  --gold-champagne: #d4af6e;
  --gold-muted: #8b7355;
  --ivory: #f5f0e8;
  --charcoal: #1c1c1c;
  --glass-overlay: rgba(15, 35, 22, 0.55);
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --container: 1280px;
}

::selection {
  background: var(--gold-champagne);
  color: var(--green-primary);
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-champagne) var(--green-deep);
  scrollbar-width: thin;
}

body {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: var(--green-deep);
}

body::-webkit-scrollbar-thumb {
  background: var(--gold-champagne);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

p {
  margin: 0 0 22px;
}

a,
button {
  transition: var(--transition-fast);
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 14px;
  left: 14px;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--gold-champagne);
  color: var(--green-deep);
}

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

.narrow-container {
  width: min(calc(100% - 40px), 900px);
}

.section {
  padding: 60px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.page-header h1 {
  font-size: 38px;
}

.section-heading--dark h2,
.section-heading--dark .section-label {
  color: var(--ivory);
}

.section-label {
  margin-bottom: 12px;
  color: var(--gold-muted);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  border: 1px solid rgba(212, 175, 110, 0.75);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.button--solid {
  background: var(--green-primary);
  color: var(--gold-champagne);
}

.button--outline {
  background: transparent;
  color: var(--gold-champagne);
}

.button--gold {
  background: var(--gold-champagne);
  color: var(--green-deep);
}

.button:hover,
.button:focus-visible {
  background: var(--gold-champagne);
  color: var(--green-deep);
  border-color: var(--gold-champagne);
}

.gold-diamond {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold-champagne);
}

.gold-diamond span {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(212, 175, 110, 0.7);
}

.gold-diamond i {
  display: block;
  width: 8px;
  height: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-in-out, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: calc(var(--observer-delay, 0) * 1s);
}

.fade-in.reveal-text {
  transform: translateY(30px);
  transition-duration: 0.9s;
}

.fade-in.reveal-image {
  position: relative;
  overflow: hidden;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.9s ease-in-out, transform 1s cubic-bezier(0.18, 0.72, 0.22, 1);
  transition-delay: calc(var(--observer-delay, 0) * 1s);
}

.fade-in.reveal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, rgba(212, 175, 110, 0.18), rgba(245, 240, 232, 0.04));
  transform: translateX(-102%);
  transition: transform 1.05s cubic-bezier(0.18, 0.72, 0.22, 1);
  transition-delay: calc((var(--observer-delay, 0) * 1s) + 0.08s);
  pointer-events: none;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.visible.reveal-image {
  transform: translateY(0) scale(1);
}

.fade-in.visible.reveal-image::after {
  transform: translateX(102%);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 0;
  height: 2px;
  background: var(--gold-champagne);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 110, 0.2);
  background: var(--glass-overlay);
  backdrop-filter: blur(18px) saturate(1.6);
  transition: background 0.4s ease-in-out, backdrop-filter 0.4s ease-in-out;
}

.site-header.scrolled {
  background: rgba(10, 25, 15, 0.8);
  backdrop-filter: blur(24px) saturate(1.6);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--container));
  min-height: 76px;
  margin: 0 auto;
  gap: 24px;
}

.site-branding {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.site-header--banner .site-header__inner {
  flex-direction: column;
  justify-content: center;
  min-height: 164px;
  gap: 14px;
  padding: 18px 0;
}

.site-branding--banner {
  width: min(100%, 1080px);
  min-height: 104px;
  justify-content: center;
  padding: 11px;
  border: 1px solid var(--gold-champagne);
  border-radius: 12px;
  background: rgba(20, 83, 60, 0.42);
}

.site-branding--banner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(212, 175, 110, 0.9);
  border-radius: 9px;
  pointer-events: none;
}

.site-logo,
.custom-logo-link {
  display: inline-flex;
  overflow: hidden;
  position: relative;
}

.site-logo img,
.custom-logo,
.site-logo__default {
  display: block;
  width: auto;
  max-height: 55px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 110, 0.28));
}

.site-branding--banner .site-logo,
.site-branding--banner .custom-logo-link {
  justify-content: center;
  width: 100%;
}

.site-branding--banner .site-logo img,
.site-branding--banner .custom-logo,
.site-branding--banner .site-logo__default {
  width: min(78vw, 360px);
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}

.logo-shine {
  position: absolute;
  top: -35%;
  left: 0;
  width: 180px;
  height: 170%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 245, 196, 0.08) 30%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 245, 196, 0.08) 70%, transparent 100%);
  opacity: 0;
  transform: translate3d(-220px, 0, 0) skewX(-18deg);
  will-change: transform, opacity;
}

.primary-navigation ul,
.site-footer ul {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-header--banner .primary-navigation ul {
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.primary-navigation a {
  position: relative;
  display: inline-flex;
  color: var(--gold-champagne);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-champagne);
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--ivory);
}

.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  text-align: center;
  background: var(--green-deep);
}

.hero-section__image {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  animation: kenBurns 12s ease-in-out infinite alternate;
}

.hero-section__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(10, 25, 16, 0.42) 0%, rgba(6, 14, 9, 0.7) 72%),
    rgba(6, 14, 9, 0.64);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 920px);
  padding-top: 164px;
}

.hero-overline {
  color: var(--gold-champagne);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.hero-section h1 {
  margin-bottom: 28px;
  color: var(--ivory);
  font-size: 42px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-section h1 span,
.hero-section h1 em {
  display: block;
}

.hero-section h1 em {
  color: var(--gold-champagne);
  font-style: italic;
  font-weight: 300;
}

.hero-copy {
  width: min(100%, 620px);
  margin: 28px auto;
  color: rgba(245, 240, 232, 0.86);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 1;
  width: 28px;
  height: 42px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border-right: 1px solid var(--gold-champagne);
  border-bottom: 1px solid var(--gold-champagne);
  transform: rotate(45deg);
  animation: bounceArrow 1.6s ease-in-out infinite;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes bounceArrow {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(45deg);
  }
}

.collections-section,
.services-section,
.gallery-section,
.find-us-section,
.elementor-content-area,
.page-layout,
.single-layout,
.archive-layout {
  background: var(--ivory);
}

.elementor-content-area:empty {
  display: none;
}

.elementor-content-area {
  display: contents;
}

.elementor-content-area > .elementor:empty,
.elementor-content-area > .elementor-section-wrap:empty,
.elementor-content-area > .elementor-inner:empty {
  display: none;
}

body.elementor-editor-active .elementor-content-area {
  min-height: 0;
  padding: 0;
  background: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 260px;
  padding: 28px 18px;
  overflow: hidden;
  background-image: linear-gradient(rgba(15, 35, 22, 0.12), rgba(15, 35, 22, 0.56)), var(--card-image);
  background-position: center;
  background-size: cover;
  color: var(--ivory);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 15, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.category-card span {
  position: relative;
  z-index: 1;
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.5s ease-in-out;
}

.category-card span::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin: 12px auto 0;
  background: var(--gold-champagne);
  transition: width 0.5s ease-in-out;
}

.category-card:hover::before,
.category-card:focus-visible::before {
  opacity: 1;
}

.category-card:hover span,
.category-card:focus-visible span {
  transform: translateY(-10px);
}

.category-card:hover span::after,
.category-card:focus-visible span::after {
  width: 54px;
}

.heritage-section,
.timeline-section,
.testimonials-section {
  background: var(--green-primary);
  color: rgba(245, 240, 232, 0.82);
}

.heritage-section__grid {
  display: grid;
  gap: 40px;
}

.heritage-section__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.heritage-section__media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.heritage-section__copy {
  position: relative;
  padding-left: 28px;
}

.heritage-section__copy::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 1px;
  background: rgba(212, 175, 110, 0.68);
}

.heritage-section__copy h2 {
  color: var(--ivory);
  font-size: 40px;
}

.heritage-section__copy p:not(.section-label) {
  color: rgba(245, 240, 232, 0.84);
  font-size: 14px;
  line-height: 2;
}

.service-grid {
  display: grid;
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 34px 28px 30px;
  border-top: 2px solid var(--gold-champagne);
  background: rgba(255, 255, 255, 0.22);
}

.service-card__number {
  display: block;
  margin-bottom: 24px;
  color: rgba(139, 115, 85, 0.3);
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1;
}

.service-card h3 {
  color: var(--green-primary);
  font-size: 22px;
}

.service-card p {
  color: var(--charcoal);
  font-size: 13px;
}

.service-card a,
.post-card__link {
  display: inline-flex;
  gap: 8px;
  color: var(--gold-muted);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.service-card a:hover,
.post-card__link:hover {
  color: var(--green-primary);
}

.timeline-years {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 34px;
  scrollbar-width: thin;
}

.timeline-years button {
  flex: 0 0 auto;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(212, 175, 110, 0.25);
  background: transparent;
  color: rgba(212, 175, 110, 0.62);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 28px;
}

.timeline-years button.active {
  color: var(--gold-champagne);
  transform: scale(1.08);
}

.timeline-track {
  position: relative;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 20px 0 12px;
  scroll-snap-type: x mandatory;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  min-width: 900px;
  height: 1px;
  background: rgba(212, 175, 110, 0.35);
}

.timeline-item {
  position: relative;
  flex: 0 0 min(76vw, 310px);
  padding-top: 36px;
  scroll-snap-align: start;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--green-primary);
  border: 1px solid var(--gold-muted);
  transform: rotate(45deg);
}

.timeline-item.active::before {
  background: var(--gold-champagne);
  border-color: var(--gold-champagne);
}

.timeline-item span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-champagne);
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
}

.timeline-item h3 {
  color: var(--ivory);
  font-size: 24px;
}

.timeline-item p {
  color: rgba(245, 240, 232, 0.72);
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.gallery-item span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(212, 175, 110, 0.78);
  color: var(--green-deep);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.gallery-item:hover span,
.gallery-item:focus-visible span {
  opacity: 1;
}

.testimonial-carousel {
  position: relative;
  width: min(100%, 900px);
  min-height: 320px;
  margin: 0 auto;
  padding: 40px 0 12px;
  text-align: center;
}

.testimonial-mark {
  position: absolute;
  top: -22px;
  left: 50%;
  color: rgba(212, 175, 110, 0.15);
  font-family: var(--font-heading);
  font-size: 220px;
  line-height: 1;
  transform: translateX(-50%);
}

.testimonial-slides {
  position: relative;
  min-height: 210px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-slide blockquote {
  max-width: 820px;
  margin: 0 auto 30px;
  color: var(--ivory);
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  line-height: 1.35;
}

.testimonial-slide cite {
  color: var(--gold-champagne);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid var(--gold-champagne);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--gold-champagne);
}

.contact-cta {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 90px 0;
  background-image: var(--cta-image);
  background-position: center;
  background-size: cover;
}

.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 14, 9, 0.86), rgba(10, 25, 16, 0.7)),
    rgba(6, 14, 9, 0.72);
}

.contact-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
  align-items: center;
}

.contact-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.contact-cta h2 {
  color: var(--ivory);
  font-size: 40px;
}

.contact-cta p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 15px;
}

.contact-cta a:not(.button) {
  color: var(--gold-champagne);
}

.phone-reveal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 175, 110, 0.35);
  color: rgba(245, 240, 232, 0.76);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phone-reveal__number {
  color: var(--gold-champagne);
  font-family: var(--font-heading);
  font-size: 26px;
  text-transform: none;
  letter-spacing: 0.04em;
}

.enquiry-form {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  padding: 30px;
  border: 1px solid rgba(212, 175, 110, 0.42);
  background: rgba(9, 23, 14, 0.86);
  backdrop-filter: blur(16px);
}

.enquiry-form__row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.enquiry-form label {
  color: var(--gold-champagne);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 110, 0.34);
  border-radius: 0;
  background: rgba(245, 240, 232, 0.96);
  color: var(--ivory);
  color: var(--charcoal);
  font-size: 14px;
  outline: none;
  padding: 12px 13px;
  transition: border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold-champagne);
  background: #fffaf1;
}

.enquiry-form__note,
.enquiry-form__status {
  margin: 14px 0 0;
  color: rgba(245, 240, 232, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

.enquiry-form__status a {
  color: var(--gold-champagne);
  border-bottom: 1px solid rgba(212, 175, 110, 0.45);
}

.find-us-section__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.find-us-section__pin {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(212, 175, 110, 0.45);
}

.find-us-section__pin svg {
  width: 48px;
  height: 48px;
  fill: var(--gold-champagne);
}

.find-us-section h2 {
  font-size: 36px;
}

.site-footer {
  background: var(--green-deep);
  color: rgba(245, 240, 232, 0.68);
}

.site-footer__rule {
  height: 1px;
  background: rgba(212, 175, 110, 0.45);
}

.site-footer__inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 56px 0 28px;
}

.site-footer__brand {
  margin-bottom: 44px;
}

.site-footer__brand img {
  width: 220px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 44px;
}

.footer-heading {
  margin-bottom: 16px;
  color: var(--gold-champagne);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer ul {
  display: block;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--gold-muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-champagne);
}

.footer-phone-note {
  color: rgba(245, 240, 232, 0.52);
  font-size: 12px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(212, 175, 110, 0.45);
  color: var(--gold-champagne);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.social-links a[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.social-links a:hover {
  background: var(--gold-champagne);
  color: var(--green-deep);
}

.site-footer .gold-diamond {
  display: flex;
  margin: 30px auto;
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(245, 240, 232, 0.5);
  font-size: 11px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 18px;
}

.page-header {
  margin-bottom: 36px;
  text-align: center;
}

.entry-media,
.post-card__media {
  display: block;
  margin-bottom: 28px;
  overflow: hidden;
}

.entry-media img,
.post-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.entry-content {
  color: var(--charcoal);
}

.entry-content h2,
.entry-content h3 {
  margin-top: 42px;
}

.entry-content a {
  color: var(--gold-muted);
  border-bottom: 1px solid rgba(139, 115, 85, 0.35);
}

.entry-meta {
  color: var(--gold-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.content-grid {
  display: grid;
  gap: 48px;
}

.post-list,
.post-grid {
  display: grid;
  gap: 34px;
}

.post-card {
  display: grid;
  gap: 24px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(139, 115, 85, 0.18);
}

.post-card h2 {
  font-size: 28px;
}

.post-card h2 a {
  color: var(--green-deep);
}

.post-card p {
  font-size: 14px;
}

.sidebar .widget {
  margin-bottom: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(139, 115, 85, 0.28);
}

.widget-title {
  color: var(--green-primary);
  font-size: 22px;
}

.nav-links,
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

.nav-links a,
.nav-links span,
.page-numbers {
  color: var(--gold-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.error-404 {
  display: grid;
  min-height: 100vh;
  padding: 120px 20px 80px;
  place-items: center;
  background: var(--green-deep);
  color: rgba(245, 240, 232, 0.78);
  text-align: center;
}

.error-404 h1 {
  color: var(--ivory);
  font-size: 42px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 22px;
  border: 1px solid rgba(212, 175, 110, 0);
  transition: border-color 0.3s ease-in-out;
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(212, 175, 110, 0.55);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 14px 16px 0;
  color: var(--green-deep);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 16px;
  color: var(--gold-muted);
  font-family: var(--font-heading);
  font-size: 20px;
}

.woocommerce span.onsale {
  min-height: auto;
  min-width: auto;
  padding: 8px 12px;
  border-radius: 0;
  background: var(--gold-champagne);
  color: var(--green-deep);
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  margin-left: 16px;
  border-radius: 0;
  background: var(--green-primary);
  color: var(--gold-champagne);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-champagne);
  color: var(--green-deep);
}

@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 56px;
  }

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

  .post-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .page-header h1 {
    font-size: 42px;
  }

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

  .category-card {
    min-height: 360px;
  }

  .heritage-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    align-items: center;
  }

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

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

  .contact-cta__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  }

  .find-us-section__grid {
    grid-template-columns: 160px minmax(0, 1fr);
  }

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

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .post-grid .post-card {
    display: block;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .contact-cta {
    padding: 72px 0;
  }

  .contact-cta__content {
    text-align: center;
    margin: 0 auto;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

  .enquiry-form {
    justify-self: center;
    max-width: 520px;
    padding: 24px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .hero-section h1 {
    font-size: 72px;
  }

  .heritage-section__copy h2 {
    font-size: 48px;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .site-header--banner .site-header__inner {
    min-height: 142px;
    gap: 14px;
    padding: 12px 0 14px;
  }

  .site-branding--banner {
    min-height: 88px;
    padding: 10px;
  }

  .site-branding--banner .site-logo img,
  .site-branding--banner .custom-logo,
  .site-branding--banner .site-logo__default {
    width: min(62vw, 280px);
    max-height: 62px;
  }

  .site-header--banner .primary-navigation ul {
    gap: 12px 20px;
  }

  .primary-navigation a {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .primary-navigation a::after {
    bottom: -5px;
  }

  .hero-section__content {
    padding-top: 142px;
  }
}

@media (max-width: 767px) {
  .site-header--banner .site-header__inner {
    width: min(calc(100% - 20px), var(--container));
    min-height: 134px;
  }

  .site-branding--banner {
    min-height: 76px;
    border-radius: 10px;
  }

  .site-branding--banner::before {
    inset: 7px;
    border-radius: 7px;
  }

  .site-branding--banner .site-logo img,
  .site-branding--banner .custom-logo,
  .site-branding--banner .site-logo__default {
    width: min(58vw, 210px);
    max-height: 48px;
  }

  .site-header--banner .primary-navigation ul {
    gap: 9px 14px;
  }

  .primary-navigation a {
    font-size: 8px;
    letter-spacing: 0.13em;
  }

  .hero-section__content {
    padding-top: 134px;
  }

  .timeline-years {
    display: none;
  }

  .timeline-track {
    display: grid;
    overflow: visible;
    padding-left: 22px;
  }

  .timeline-track::before {
    top: 0;
    bottom: 0;
    left: 4px;
    width: 1px;
    min-width: 0;
    height: auto;
  }

  .timeline-item {
    flex: none;
    padding: 0 0 0 22px;
  }

  .timeline-item::before {
    top: 8px;
    left: -22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
