/* ST KATHERINE HOLDINGS LIMITED — corporate site styles (skh-) */

:root {
  --skh-navy: #0E1B2C;
  --skh-navy-deep: #0A1421;
  --skh-slate: #24374C;
  --skh-gold: #C6A15B;
  --skh-gold-soft: rgba(198, 161, 91, 0.4);
  --skh-gold-faint: rgba(198, 161, 91, 0.16);
  --skh-parchment: #EDE7DA;
  --skh-parchment-dim: rgba(237, 231, 218, 0.66);
  --skh-parchment-faint: rgba(237, 231, 218, 0.42);
  --skh-max: 1080px;
  --skh-gutter: 22px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

.skh-body {
  margin: 0;
  background: var(--skh-navy);
  color: var(--skh-parchment);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0.006em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.skh-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--skh-gold);
  color: var(--skh-navy-deep);
  padding: 10px 16px;
  z-index: 200;
  border-radius: 2px;
  font-size: 14px;
}
.skh-skip:focus { left: 12px; top: 12px; }

.skh-wrap {
  width: 100%;
  max-width: var(--skh-max);
  margin: 0 auto;
  padding: 0 var(--skh-gutter);
}

.skh-link {
  color: var(--skh-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--skh-gold-soft);
  transition: border-color 0.25s ease, color 0.25s ease;
}
.skh-link:hover, .skh-link:focus { color: var(--skh-parchment); border-color: var(--skh-parchment); }

/* thin gold hairline rule */
.skh-rule {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--skh-gold-soft) 12%, var(--skh-gold-soft) 88%, transparent);
}

/* ---------- Header ---------- */
.skh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 20, 33, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.skh-header-inner {
  width: 100%;
  max-width: var(--skh-max);
  margin: 0 auto;
  padding: 18px var(--skh-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.skh-wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--skh-parchment);
  line-height: 1;
}
.skh-wordmark-lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.18em;
}
.skh-wordmark-sub {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--skh-gold);
  margin-top: 5px;
}

.skh-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 38px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--skh-gold-faint);
  border-radius: 2px;
  cursor: pointer;
}
.skh-nav-bar {
  display: block;
  height: 1px;
  width: 100%;
  background: var(--skh-gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.skh-nav-toggle[aria-expanded="true"] .skh-nav-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.skh-nav-toggle[aria-expanded="true"] .skh-nav-bar:nth-child(2) { opacity: 0; }
.skh-nav-toggle[aria-expanded="true"] .skh-nav-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.skh-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--skh-navy-deep);
  border-top: 1px solid var(--skh-gold-faint);
  padding: 8px var(--skh-gutter) 20px;
}
.skh-nav.skh-open { display: flex; }
.skh-nav a {
  color: var(--skh-parchment-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 2px;
  border-bottom: 1px solid rgba(237, 231, 218, 0.06);
  transition: color 0.25s ease;
}
.skh-nav a:hover, .skh-nav a:focus { color: var(--skh-gold); }

/* ---------- Hero ---------- */
.skh-hero {
  padding: clamp(64px, 13vw, 150px) 0 clamp(48px, 9vw, 96px);
  border-bottom: 1px solid var(--skh-gold-faint);
}
.skh-hero-inner {
  width: 100%;
  max-width: var(--skh-max);
  margin: 0 auto;
  padding: 0 var(--skh-gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.skh-eyebrow {
  margin: 0 0 26px;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--skh-gold);
}
.skh-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 7vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.005em;
  margin: 0;
  max-width: 16ch;
  color: var(--skh-parchment);
}
.skh-emblem {
  margin: 44px 0 0;
  opacity: 0.85;
}
.skh-emblem svg { display: block; width: clamp(88px, 20vw, 120px); height: auto; }

/* ---------- Sections ---------- */
.skh-section {
  padding: clamp(56px, 10vw, 104px) 0;
  border-bottom: 1px solid var(--skh-gold-faint);
}
.skh-section-label {
  margin: 0 0 20px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--skh-gold);
}
.skh-h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  line-height: 1.16;
  margin: 0 0 32px;
  max-width: 20ch;
  color: var(--skh-parchment);
}
.skh-prose { max-width: 62ch; }
.skh-prose p {
  margin: 0 0 22px;
  color: var(--skh-parchment-dim);
}
.skh-prose p:last-child { margin-bottom: 0; }

/* ---------- Interests ---------- */
.skh-interest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.skh-interest {
  display: flex;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--skh-gold-faint);
}
.skh-interest:first-child { border-top: 1px solid var(--skh-gold-soft); }
.skh-interest:last-child { border-bottom: 1px solid var(--skh-gold-faint); }
.skh-interest-index {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  color: var(--skh-gold);
  letter-spacing: 0.1em;
  min-width: 42px;
  padding-top: 2px;
}
.skh-h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--skh-parchment);
  letter-spacing: 0.01em;
}
.skh-interest-body p {
  margin: 0;
  color: var(--skh-parchment-dim);
  max-width: 56ch;
}

/* ---------- Company facts ---------- */
.skh-facts {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--skh-slate);
  border: 1px solid var(--skh-gold-faint);
  border-radius: 3px;
}
.skh-fact {
  padding: 22px 24px;
  border-top: 1px solid rgba(237, 231, 218, 0.07);
}
.skh-fact:first-child { border-top: none; }
.skh-fact dt {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--skh-gold);
  margin: 0 0 8px;
}
.skh-fact dd {
  margin: 0;
  color: var(--skh-parchment);
  font-weight: 400;
}

/* ---------- Contact ---------- */
.skh-contact-wrap { max-width: var(--skh-max); }
.skh-contact-lead {
  margin: 0 0 26px;
  color: var(--skh-parchment-dim);
  max-width: 48ch;
}
.skh-mailto {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  color: var(--skh-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--skh-gold-soft);
  padding-bottom: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
  word-break: break-word;
}
.skh-mailto:hover, .skh-mailto:focus { color: var(--skh-parchment); border-color: var(--skh-parchment); }

/* ---------- Footer ---------- */
.skh-footer { background: var(--skh-navy-deep); }
.skh-footer-inner {
  width: 100%;
  max-width: var(--skh-max);
  margin: 0 auto;
  padding: 44px var(--skh-gutter) 56px;
}
.skh-footer-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  color: var(--skh-parchment);
}
.skh-footer-meta {
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--skh-parchment-faint);
}
.skh-footer-links { margin: 16px 0 0; font-size: 13px; }
.skh-dot { color: var(--skh-gold-soft); margin: 0 8px; }

/* ---------- Privacy page ---------- */
.skh-legal { padding: clamp(48px, 9vw, 96px) 0 clamp(56px, 10vw, 104px); }
.skh-legal-wrap { max-width: 760px; }
.skh-legal h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 12px;
  color: var(--skh-parchment);
}
.skh-legal-lead {
  color: var(--skh-parchment-dim);
  margin: 0 0 40px;
  max-width: 60ch;
}
.skh-legal h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.55rem;
  margin: 40px 0 14px;
  color: var(--skh-parchment);
  letter-spacing: 0.01em;
}
.skh-legal p { color: var(--skh-parchment-dim); margin: 0 0 18px; max-width: 64ch; }
.skh-legal ul { margin: 0 0 18px; padding-left: 20px; color: var(--skh-parchment-dim); max-width: 64ch; }
.skh-legal li { margin: 0 0 9px; }
.skh-back {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--skh-gold);
  text-decoration: none;
}
.skh-back:hover, .skh-back:focus { color: var(--skh-parchment); }
.skh-legal-facts {
  margin: 8px 0 0;
  padding: 24px 24px;
  background: var(--skh-slate);
  border: 1px solid var(--skh-gold-faint);
  border-radius: 3px;
}
.skh-legal-facts dt {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--skh-gold); margin: 0 0 6px;
}
.skh-legal-facts dd { margin: 0 0 16px; color: var(--skh-parchment); }
.skh-legal-facts dd:last-child { margin-bottom: 0; }

/* ---------- Entrance animation (opacity default 1) ---------- */
.skh-rise {
  opacity: 1;
  animation: skh-rise-in 0.9s ease-out both;
}
@keyframes skh-rise-in {
  from { opacity: 0.35; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .skh-rise { animation: none; opacity: 1; transform: none; }
  .skh-nav-bar { transition: none; }
}

/* ---------- Responsive: tablet / desktop ---------- */
@media (min-width: 720px) {
  :root { --gutter: 40px; }
  .skh-facts {
    grid-template-columns: 1fr 1fr;
  }
  .skh-fact { border-top: 1px solid rgba(237, 231, 218, 0.07); }
  .skh-fact:nth-child(1), .skh-fact:nth-child(2) { border-top: none; }
  .skh-fact:nth-child(odd) { border-right: 1px solid rgba(237, 231, 218, 0.07); }
}

@media (min-width: 900px) {
  .skh-nav-toggle { display: none; }
  .skh-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    border-top: none;
    padding: 0;
    gap: 34px;
  }
  .skh-nav a {
    border-bottom: none;
    padding: 4px 0;
    font-size: 12px;
  }
  .skh-hero-inner, .skh-interest-body p, .skh-prose { }
  .skh-hero { padding-top: clamp(96px, 13vw, 170px); }
}

@media (min-width: 1080px) {
  .skh-body { font-size: 18px; }
}
