:root {
  --navy: #071018;
  --navy-2: #0c1a26;
  --navy-3: #122433;
  --ink: #101820;
  --gold: #c9a227;
  --gold-2: #e0c36a;
  --gold-dim: rgba(201, 162, 39, 0.16);
  --cream: #f4efe6;
  --paper: #faf7f1;
  --white: #ffffff;
  --muted: #7d868f;
  --muted-2: #a8b0b7;
  --line: rgba(201, 162, 39, 0.28);
  --line-dark: rgba(255, 255, 255, 0.08);
  --danger: #c45c4a;
  --success: #2f7d5a;
  --shadow: 0 24px 60px rgba(7, 16, 24, 0.18);
  --radius: 18px;
  --header-h: 84px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: #2c353d;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 16px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

#home,
#products,
#about,
#operations,
#contact {
  scroll-margin-top: 88px;
}

.section-dark {
  background: var(--navy);
  color: #d7dde3;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 640px;
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
}

.section-dark .section-head p {
  color: var(--muted-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.25);
}

.btn-gold:hover {
  background: var(--gold-2);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border-color: rgba(16, 24, 32, 0.18);
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-dim);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 16, 24, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 24, 0.94);
  border-bottom-color: var(--line-dark);
  height: 72px;
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  image-rendering: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: #d5dbe1;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.3s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 24, 0.28) 0%, rgba(7, 16, 24, 0.55) 42%, rgba(7, 16, 24, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 16, 24, 0.72) 0%, rgba(7, 16, 24, 0.18) 58%, rgba(7, 16, 24, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 88px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.hero-kicker {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 920px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.hero-lead {
  max-width: 560px;
  font-size: 18px;
  color: #c9d1d8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(7, 16, 24, 0.25), rgba(7, 16, 24, 0.88));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 64px;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.snapshot {
  margin-top: -56px;
  position: relative;
  z-index: 3;
  padding-bottom: 32px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.06);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-card {
  padding: 32px 28px;
  border-right: 1px solid rgba(16, 24, 32, 0.06);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.4vw, 2.6rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card span {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.07);
}

.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 4px 8px;
}

.product-body h3 {
  font-size: 1.55rem;
}

.product-body p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.product-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 13px;
  width: 100%;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.activity-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: flex-end;
}

.activity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.activity-card:hover img {
  transform: scale(1.06);
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 16, 24, 0.12), rgba(7, 16, 24, 0.88));
}

.activity-body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.activity-body h3 {
  color: var(--white);
  font-size: 2.1rem;
  margin-bottom: 10px;
}

.activity-body p {
  color: #d5dbe1;
  font-size: 14.5px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 540px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 540px;
}

.about-media figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(7, 16, 24, 0.82);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fact {
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.06);
  padding: 22px;
}

.fact span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.fact strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy);
}

.ops-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.ops-panel {
  background: var(--navy-3);
  border: 1px solid var(--line-dark);
  padding: 36px;
}

.ops-item + .ops-item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}

.ops-item span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ops-item strong {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
}

.ops-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.chip {
  border: 1px solid var(--line);
  color: var(--gold-2);
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ops-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.ops-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.map-note {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(7, 16, 24, 0.86);
  color: var(--white);
  padding: 16px 18px;
  max-width: 240px;
}

.map-note small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.commercial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 22px;
}

.commercial-card {
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.06);
  padding: 32px;
}

.commercial-card span {
  display: block;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.commercial-card strong {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--navy);
}

.cta-band {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 24, 0.88), rgba(7, 16, 24, 0.52));
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 640px;
}

.site-footer {
  background: #050b11;
  color: #b7c0c8;
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 16px;
  max-width: 320px;
}

.footer-brand h3,
.footer-col h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-bottom: 8px;
  color: #b7c0c8;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-legal {
  background: #000;
  margin-top: 0;
  padding: 18px 0;
}

.footer-legal-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-legal p {
  margin: 0;
  color: #f2f2f2;
  font-size: 13px;
  line-height: 1.6;
  max-width: 820px;
}

.footer-legal .legal-gold {
  color: #c5a059;
  font-weight: 500;
}

.footer-legal a.legal-gold:hover {
  color: #e0c36a;
}

.footer-ew {
  flex-shrink: 0;
}

.footer-ew img {
  display: block;
  height: 78px;
  width: auto;
  object-fit: contain;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.06);
  padding: 36px;
}

.contact-block + .contact-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 24, 32, 0.06);
}

.contact-block span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-block a:hover,
.contact-block strong {
  color: var(--navy);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 24, 32, 0.12);
  background: #fbfaf7;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.field .error {
  color: var(--danger);
  font-size: 12px;
  min-height: 16px;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--danger);
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  font-size: 14px;
}

.form-status.success {
  display: block;
  background: #e8f5ee;
  color: var(--success);
}

.form-status.error {
  display: block;
  background: #fdecea;
  color: var(--danger);
}

.form-success-panel {
  display: none;
  text-align: center;
  padding: 40px 12px;
}

.form-success-panel.is-visible,
.enquiry-form.is-hidden {
  display: block;
}

.enquiry-form.is-hidden {
  display: none;
}

.form-success-panel h3 {
  margin: 12px 0;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 16, 24, 0.72);
  display: none;
  place-items: center;
  z-index: 200;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(760px, 100%);
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.modal-body {
  padding: 28px;
}

.modal-close {
  float: right;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--navy);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy);
  color: var(--gold);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker span {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.js-reveal.is-in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-header { position: sticky; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 16, 24, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .header-cta .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }
  .snapshot-grid,
  .product-grid,
  .activity-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-layout,
  .ops-layout,
  .commercial-grid,
  .footer-grid,
  .contact-layout,
  .form-grid,
  .modal-card,
  .section-head,
  .cta-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .section-head,
  .cta-inner {
    align-items: flex-start;
  }
  .footer-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .nav a::after { display: none; }
  .logo-img { height: 40px; }
}

@media (max-width: 720px) {
  .container,
  .header-inner,
  .hero-content,
  .page-hero-content,
  .cta-inner {
    width: calc(100% - 28px);
  }
  .section { padding: 72px 0; }
  .product-grid,
  .activity-grid {
    grid-template-columns: 1fr;
  }
  .snapshot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-card:nth-child(odd) {
    border-right: 1px solid rgba(16, 24, 32, 0.06);
  }
  .stat-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(16, 24, 32, 0.06);
  }
  .about-facts { grid-template-columns: 1fr; }
  .about-media,
  .about-media img,
  .ops-visual,
  .ops-visual img {
    min-height: 320px;
  }
  .hero { min-height: 86vh; }
  .hero h1 { font-size: 2.7rem; }
  .product-actions { flex-direction: column; }
  .footer-legal-inner {
    width: calc(100% - 28px);
  }
  .footer-ew img { height: 64px; }
  .logo-img { height: 34px; }
}
