:root {
  --black: #080604;
  --deep-brown: #120c08;
  --walnut: #24160d;
  --walnut-soft: #322014;
  --bronze: #b88443;
  --bronze-light: #d7ad62;
  --cream: #f4eadb;
  --muted: #b9a995;
  --line: rgba(216, 173, 98, 0.22);
  --panel: rgba(255, 255, 255, 0.045);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(184, 132, 67, 0.16), transparent 34rem),
    linear-gradient(180deg, var(--black), var(--deep-brown) 44rem, var(--black));
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid rgba(216, 173, 98, 0.16);
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(184px, 43vw);
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 32px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a,
.header-action,
.language-select {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--bronze-light);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.language-select,
.header-action,
.btn {
  min-height: 46px;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
}

.language-select {
  max-width: 118px;
  border: 1px solid var(--line);
  padding: 0 12px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.header-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}

.header-action {
  padding: 0 18px;
  color: var(--bronze-light);
  border-color: var(--line);
}

.header-action:hover,
.btn-secondary:hover {
  background: rgba(216, 173, 98, 0.1);
  border-color: rgba(216, 173, 98, 0.5);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--cream);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 83px);
  padding: clamp(70px, 9vw, 126px) clamp(20px, 5vw, 70px);
  border-bottom: 1px solid rgba(216, 173, 98, 0.14);
}

.hero-copy-block {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--bronze-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.2rem, 10vw, 9.2rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 0.95;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.05;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 650px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.btn {
  min-width: 172px;
  padding: 0 24px;
}

.btn-primary {
  color: #170d07;
  background: linear-gradient(135deg, #efd08d, var(--bronze));
  box-shadow: 0 16px 34px rgba(184, 132, 67, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--cream);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(216, 173, 98, 0.18);
  border-radius: 8px;
  background: var(--walnut);
  box-shadow: var(--shadow);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0), rgba(8, 6, 4, 0.72));
  z-index: 1;
}

.hero-image img {
  width: 100%;
  min-height: clamp(480px, 62vw, 720px);
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 420px;
  color: var(--cream);
  font-weight: 700;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid rgba(216, 173, 98, 0.14);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
}

.intro-strip p {
  max-width: 850px;
  font-size: 1.04rem;
}

.intro-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-strip li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--bronze-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.page-section {
  padding: clamp(74px, 9vw, 124px) clamp(20px, 5vw, 70px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.collection-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

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

.collection-card,
.product-card,
.enquiry-form,
.custom-panel {
  border: 1px solid rgba(216, 173, 98, 0.16);
  border-radius: 8px;
  background: var(--panel);
}

.collection-card,
.product-card {
  overflow: hidden;
}

.collection-card img,
.product-card img {
  width: 100%;
  object-fit: cover;
  background: var(--walnut);
}

.collection-card img {
  aspect-ratio: 4 / 3;
}

.collection-card div,
.product-card div {
  padding: 22px;
}

.collection-card p,
.product-card p,
.split-copy p,
.about-copy p,
.custom-panel p,
.contact-copy p {
  color: var(--muted);
}

.collection-card p,
.product-card p {
  margin-top: 12px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 132, 67, 0.15), transparent 26rem),
    linear-gradient(135deg, #0b0705, #1b1009 58%, #0a0604);
}

.split-media {
  overflow: hidden;
  border: 1px solid rgba(216, 173, 98, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
}

.split-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.detail-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.detail-list article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.detail-list p {
  margin-top: 8px;
}

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

.product-card img {
  aspect-ratio: 1 / 1.12;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(30px, 6vw, 80px);
  border-top: 1px solid rgba(216, 173, 98, 0.14);
  border-bottom: 1px solid rgba(216, 173, 98, 0.14);
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.custom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
  padding-top: 0;
}

.custom-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.custom-panel p:not(.eyebrow) {
  margin: 20px 0 30px;
  font-size: 1.08rem;
}

.custom-section > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid rgba(216, 173, 98, 0.16);
  border-radius: 8px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-copy p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.06rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(36, 22, 13, 0.72);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form span {
  color: var(--bronze-light);
  font-size: 0.82rem;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(216, 173, 98, 0.22);
  border-radius: 4px;
  padding: 14px;
  color: var(--cream);
  background: rgba(0, 0, 0, 0.25);
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.language-select:focus,
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(216, 173, 98, 0.35);
  outline-offset: 2px;
}

.full,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--bronze-light);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 70px);
  border-top: 1px solid rgba(216, 173, 98, 0.14);
  color: var(--muted);
  background: #070504;
}

.site-footer img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

[dir="rtl"] .intro-strip ul {
  justify-content: start;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .header-tools {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(216, 173, 98, 0.12);
  }

  .hero,
  .split-section,
  .custom-section {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding-block: 14px;
  }

  .language-select {
    max-width: 102px;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 5.4rem);
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-image img {
    min-height: 380px;
  }

  .intro-strip,
  .about-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-strip ul {
    justify-content: start;
  }

  .collection-grid,
  .product-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .custom-section {
    padding-top: clamp(74px, 9vw, 124px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand img {
    width: 150px;
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .hero-image figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
