:root {
  --ink: #2a1a12;
  --muted: #6b5346;
  --paper: #f6efe6;
  --panel: #fffaf3;
  --line: #e4d5c4;
  --terra: #9c4a2a;
  --terra-dark: #7a351c;
  --gold: #c4a574;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

a {
  color: var(--terra);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 6vw;
  background: rgba(246, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--terra);
}

section {
  padding: 5rem 6vw;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 80px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--terra);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

.lede,
.section-copy {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terra);
  color: #fff;
  text-decoration: none;
  border: 0;
  padding: 0.85rem 1.3rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.hero-mark {
  width: min(360px, 100%);
  margin: 0 auto;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.price,
.fine {
  color: var(--muted);
  font-size: 0.92rem;
}

.alt {
  background: #efe4d6;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.about p {
  color: var(--muted);
}

dl {
  margin: 0;
  display: grid;
  gap: 1rem;
}

dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}

dd {
  margin: 0.2rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
}

.mono {
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
}

.enquiry {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
  margin-top: 1.5rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
}

input,
textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
}

footer {
  padding: 2.5rem 6vw 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

footer img {
  width: 72px;
  margin: 0 auto 1rem;
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 860px) {
  .hero,
  .about,
  .oils,
  .three {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
}
