/* ---------- Header / Nav ---------- */
.site-header {
  position: relative;
  z-index: 100;
  background-color: var(--color-black);
}

.brand-bar {
  height: 98px;
  background: #000;
}

.brand-bar .container {
  position: relative;
  height: 100%;
  max-width: 1028px;
}

.nav-bar {
  height: 54px;
  background: #181818;
}

.nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  max-width: 1028px;
}

.primary-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background-color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-medium), opacity var(--transition-medium), visibility var(--transition-medium);
}

.primary-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.primary-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .nav-bar .container {
    justify-content: flex-start;
  }

  .primary-nav {
    position: static;
    inset: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    flex-direction: row;
    width: 538px;
    margin-left: 114px;
  }

  .primary-nav ul {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  background-color: var(--color-black);
  background-image: url('../images/hero/hero-banner.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 751px;
}

.hero .container {
  height: 100%;
  display: flex;
  align-items: flex-start;
  max-width: 1028px;
}

.hero-content {
  width: 416px;
  margin-top: 304px;
  margin-left: 6px;
  text-align: left;
}

.hero-content h1 {
  color: #b39b66;
  width: 373px;
  font-family: 'Gloock', Georgia, serif;
  font-size: 45px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
}

.hero-content h1::after {
  content: '';
  display: block;
  width: 360px;
  height: 7px;
  border-top: 2px solid #fff;
  margin-bottom: 8px;
}

.hero-tagline {
  width: 416px;
  color: #fff;
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-height: 39px;
  margin: 0;
}

@media (max-width: 767px) {
  .brand-bar {
    height: 68px;
  }

  .nav-bar {
    height: 44px;
  }

  .hero {
    min-height: 590px;
    max-height: none;
    height: calc(100svh - 112px);
    background-position: 65% center;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 52%, rgba(0, 0, 0, 0.12) 100%);
  }

  .hero .container {
    position: relative;
    align-items: center;
    padding-bottom: 0;
  }

  .hero-content {
    width: min(21rem, 86vw);
    margin-top: 0;
    margin-left: 0;
    transform: translateY(2rem);
  }

  .hero-content h1 {
    width: fit-content;
    max-width: 100%;
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    white-space: nowrap;
  }

  .hero-content h1::after {
    width: 100%;
  }

  .hero-tagline {
    width: 100%;
    white-space: normal;
    margin-bottom: 0;
  }
}

/* ---------- About ---------- */
.about {
  height: 871px;
  padding: 0;
  background-color: #f2f0ee;
  background-image: url('../images/about-background.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about .container {
  height: 100%;
  max-width: 1028px;
  padding-top: 94px;
}

.about h2 {
  font-family: 'Gloock', Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.38;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  margin: 0 0 22px;
}

.about-copy,
.about-services,
.about-closing {
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.38;
  color: #000;
  text-align: center;
}

.about-copy p {
  margin: 0;
}

.about-copy strong {
  font-family: 'Gloock', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-services {
  margin-top: 27.6px;
}

.about-services li {
  margin: 0;
}

.about-closing {
  margin: 27.6px 0 0;
}

@media (max-width: 767px) {
  .about {
    height: auto;
    min-height: 871px;
  }

  .about .container {
    height: auto;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-xl);
  }

  .about h2 {
    font-size: 30px;
  }

  .about-copy,
  .about-services,
  .about-closing {
    font-size: 16px;
  }
}

/* ---------- Services ---------- */
.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -15%, rgba(169, 152, 105, 0.16), transparent 38%),
    #080808;
  padding: 6.5rem 0 7.5rem;
}

.services::before,
.services::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(169, 152, 105, 0.12);
  transform: rotate(45deg);
  pointer-events: none;
}

.services::before {
  top: -225px;
  left: -170px;
}

.services::after {
  right: -210px;
  bottom: -240px;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-intro {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.services-intro > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: #d8c793;
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.services-intro > span::before,
.services-intro > span::after {
  content: '';
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a99869);
}

.services-intro > span::after {
  transform: rotate(180deg);
}

.services-intro h2 {
  color: #a99869;
  font-family: 'Gloock', Georgia, serif;
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin: 1rem 0 0.8rem;
}

.services-intro p {
  color: rgba(255, 255, 255, 0.7);
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

/* ---------- Locally Owned ---------- */
.locally-owned {
  height: 687px;
  padding: 0;
  background-color: #191919;
}

.locally-owned .container {
  display: grid;
  grid-template-columns: 460px 460px;
  gap: 60px;
  align-items: start;
  height: 100%;
  max-width: 1028px;
}

.locally-owned-image {
  width: 460px;
  height: 420px;
  margin-top: 120px;
  transform: translateX(-20px);
  padding: 45px 15px 35px;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.locally-owned-text {
  width: 460px;
  padding-top: 102px;
  color: var(--color-white);
}

.locally-owned-text h2 {
  color: #a99869;
  font-family: 'Gloock', Georgia, serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  margin: 0 0 9px;
}

.locally-owned-text h3 {
  color: #fff;
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.75;
  margin: 0 0 6px;
}

.locally-owned-text p {
  color: rgba(255, 255, 255, 0.86);
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.88;
  margin: 0;
}

.locally-owned-text strong {
  color: #fff;
  font-family: 'Gloock', Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .locally-owned {
    height: auto;
    min-height: 687px;
    padding: 5rem 0;
  }

  .locally-owned .container {
    grid-template-columns: minmax(0, 460px);
    justify-content: center;
    gap: 3.5rem;
    height: auto;
  }

  .locally-owned-image {
    max-width: 460px;
    width: 100%;
    height: auto;
    aspect-ratio: 460 / 420;
    margin: 0;
    transform: none;
    padding: 9.8% 3.25% 7.6%;
  }

  .locally-owned-text {
    width: 100%;
    padding-top: 0;
  }
}

@media (max-width: 520px) {
  .locally-owned-text h2 {
    font-size: 30px;
  }

  .locally-owned-text h3 {
    font-size: 18px;
  }

  .locally-owned-text p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ---------- Gift Voucher ---------- */
.gift-voucher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 521px;
  overflow: hidden;
  background-color: #090909;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.4)),
    url('../images/gift-voucher/black-marble.jpg');
  background-position: center;
  background-size: cover;
}

.gift-voucher-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
  color: var(--color-white);
  padding: 3rem;
  text-align: center;
}

.gift-voucher-promo::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(201, 168, 106, 0.28);
  pointer-events: none;
}

.gift-voucher-promo::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(201, 168, 106, 0.13);
  border-radius: 50%;
  transform: translate(-238px, -180px);
  pointer-events: none;
}

.gift-voucher-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
}

.gift-voucher-eyebrow {
  display: block;
  margin-bottom: 17px;
  color: #c9a86a;
  font-family: Avenir, 'Avenir Next', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}

.gift-voucher-promo h2 {
  margin: 0 auto;
  color: var(--color-white);
  font-family: 'Gloock', Georgia, serif;
  font-size: clamp(27px, 2vw, 35px);
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.42;
  text-transform: uppercase;
}

.gift-voucher-promo h2 span {
  color: #c9a86a;
}

.gift-voucher-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 3.5rem;
  border-left: 1px solid rgba(201, 168, 106, 0.24);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.16), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.28));
}

.gift-voucher-image::before,
.gift-voucher-image::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.gift-voucher-image::before {
  inset: 24px;
  border: 1px solid rgba(201, 168, 106, 0.28);
}

.gift-voucher-image::after {
  top: 50%;
  left: 50%;
  width: min(68%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(201, 168, 106, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.voucher-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.52));
  transition: transform 500ms ease, filter 500ms ease;
}

.voucher-card::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -11px;
  border: 1px solid rgba(169, 152, 105, 0.72);
  transform: translate(14px, 14px);
}

.voucher-card img {
  display: block;
  width: 100%;
  max-width: none;
  background: #fff;
}

.voucher-card:hover {
  filter: drop-shadow(0 30px 26px rgba(0, 0, 0, 0.62));
  transform: translateY(-5px);
}

@media (max-width: 767px) {
  .gift-voucher {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gift-voucher-promo {
    min-height: 420px;
    padding: 4rem 1.5rem;
  }

  .gift-voucher-promo::before {
    inset: 16px;
  }

  .gift-voucher-promo h2 {
    font-size: 28px;
  }

  .gift-voucher-image {
    min-height: 410px;
    padding: 3.25rem 2rem;
    border-top: 1px solid rgba(201, 168, 106, 0.24);
    border-left: 0;
  }

  .gift-voucher-image::before {
    inset: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voucher-card {
    transition: none;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  background-color: var(--color-black);
  padding: var(--space-2xl) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xs);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Contact ---------- */
.contact {
  background-color: var(--color-black);
  padding: var(--space-2xl) 0;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-info h2,
.contact-info h3 {
  color: var(--color-gold);
}

.contact-info {
  color: var(--color-white);
}

.contact-info address {
  font-style: normal;
  margin-bottom: var(--space-lg);
}

.contact-info a {
  text-decoration: underline;
  text-decoration-color: rgba(201, 168, 106, 0.5);
}

.opening-hours dt {
  font-weight: 600;
  margin-top: var(--space-xs);
}

.opening-hours dd {
  margin: 0 0 var(--space-xs);
  opacity: 0.85;
}

.contact-form-panel {
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-lg);
}

.contact-form-panel h2 {
  color: var(--color-ink);
}

@media (min-width: 1024px) {
  .contact .container {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ---------- Policy page ---------- */
.policy-main {
  background-color: var(--color-black);
  color: var(--color-white);
}

.policy-intro {
  padding: 4.3rem 0 3.75rem;
}

.policy-main h1 {
  color: var(--color-white);
  font-family: 'Gloock', serif;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

.policy-intro p {
  max-width: 757px;
  margin: 0 auto;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
}

.policy-details {
  padding-bottom: 7.5rem;
}

.policy-details .container {
  max-width: 980px;
}

.policy-hero {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.policy-copy {
  padding: 3.75rem 2rem 0;
}

.policy-copy h2 {
  color: var(--color-white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 2.25rem;
}

.policy-copy ul {
  margin: 0 0 2.25rem;
  padding-left: 1.1rem;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.75;
  list-style: disc;
}

.policy-copy li {
  padding-left: 0;
}

@media (max-width: 767px) {
  .policy-intro {
    padding: 3.5rem 0 3rem;
  }

  .policy-main h1 {
    margin-bottom: 2rem;
  }

  .policy-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .policy-details {
    padding-bottom: 4rem;
  }

  .policy-hero {
    height: auto;
    aspect-ratio: 49 / 20;
  }

  .policy-copy {
    padding: 2.5rem 0 0;
  }

  .policy-copy h2 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
  }

  .policy-copy ul {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }
}
