
:root {
  --ink: #10252d;
  --ink-deep: #08171c;
  --sea: #2f6f78;
  --sea-dark: #24575f;
  --sand: #d8b16a;
  --sand-pale: #f4ead8;
  --cream: #fbf8f2;
  --white: #ffffff;
  --muted: #637076;
  --line: rgba(16, 37, 45, 0.12);
  --shadow: 0 22px 55px rgba(8, 23, 28, 0.16);
  --radius: 22px;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.section { padding: 82px 0; }

.eyebrow {
  margin: 0 0 11px;
  color: var(--sea);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow.light { color: #f1d6a5; }

h1, h2, h3 {
  margin: 0;
  letter-spacing: -.035em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.55rem);
  max-width: 760px;
}

h1 span { color: var(--sand); }

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.4vw, 4.05rem);
}

h3 { font-size: 1.4rem; }

p { margin: 17px 0 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 37, 45, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: block;
  width: 64px;
  padding: 3px;
  border-radius: 13px;
  background: #f1d6a5;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: rgba(255,255,255,.87);
  font-size: .93rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover { color: var(--sand); }

.main-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  overflow: hidden;
  padding: 76px 0 84px;
  color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(216,177,106,.15), transparent 31%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 66px;
}

.established {
  display: inline-block;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(216,177,106,.42);
  border-radius: 999px;
  color: #f1d6a5;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero .eyebrow { color: rgba(255,255,255,.68); }

.hero-lead {
  max-width: 690px;
  color: rgba(255,255,255,.79);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--sea);
  color: white;
}

.button.primary:hover { background: var(--sea-dark); }

.button.secondary {
  border-color: rgba(255,255,255,.27);
  color: white;
}

.button.full { width: 100%; }

.hero-art {
  display: grid;
  place-items: center;
}

.logo-card {
  width: min(100%, 505px);
  padding: 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 29px;
  background: #e1bf80;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  height: auto;
  border-radius: 21px;
}

.services { background: var(--cream); }

.section-heading.compact {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 58px;
  margin-bottom: 36px;
}

.section-heading.compact > p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.card.featured {
  box-shadow: 0 14px 38px rgba(16,37,45,.08);
  border-color: rgba(47,111,120,.22);
}

.card-label {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--sea);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  font-size: .96rem;
}

.service-note {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.social-section {
  padding: 82px 0;
  background: var(--ink);
  color: white;
}

.social-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 65px;
}

.social-grid > div:first-child p:last-child {
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
}

.social-links {
  display: grid;
  gap: 14px;
}

.social-card {
  display: grid;
  grid-template-columns: .8fr 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}

.social-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
}

.social-name {
  color: #f1d6a5;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-card strong { font-size: 1.07rem; }

.social-card span:last-child {
  color: rgba(255,255,255,.68);
  font-size: .86rem;
  white-space: nowrap;
}

.contact { background: var(--sand-pale); }

.contact-grid {
  display: grid;
  grid-template-columns: .83fr 1.17fr;
  align-items: start;
  gap: 65px;
}

.contact-copy > p {
  max-width: 510px;
  color: #536168;
}

.email-link {
  display: inline-flex;
  flex-direction: column;
  margin-top: 28px;
  padding: 16px 19px;
  border: 1px solid rgba(16,37,45,.12);
  border-radius: 15px;
  background: rgba(255,255,255,.6);
  text-decoration: none;
}

.email-link span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.email-link strong {
  margin-top: 3px;
  color: var(--sea);
}

.enquiry-form {
  padding: 28px;
  border: 1px solid rgba(16,37,45,.1);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 38px rgba(16,37,45,.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: block;
  margin-bottom: 15px;
  font-size: .9rem;
  font-weight: 900;
}

input, textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(16,37,45,.2);
  border-radius: 11px;
  background: white;
  color: var(--ink);
}

input:focus, textarea:focus {
  border-color: var(--sea);
  outline: 2px solid rgba(47,111,120,.18);
}

.form-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}

.site-footer {
  padding: 31px 0;
  background: var(--ink-deep);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: auto;
  padding: 2px;
  border-radius: 10px;
  background: #e1bf80;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span,
.footer-right span {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

.footer-right {
  text-align: right;
}

.footer-right a,
.footer-right span {
  display: block;
}

.footer-right a {
  margin-bottom: 3px;
  color: #f1d6a5;
  text-decoration: none;
  font-size: .88rem;
}

@media (max-width: 880px) {
  .section,
  .social-section { padding: 68px 0; }

  .menu-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open { display: flex; }

  .main-nav a { padding: 10px 2px; }

  .main-nav .nav-cta {
    margin-top: 7px;
    text-align: center;
  }

  .hero-grid,
  .section-heading.compact,
  .social-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-art {
    order: -1;
  }

  .logo-card {
    width: min(74vw, 390px);
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .social-card {
    grid-template-columns: 1fr auto;
  }

  .social-name {
    grid-column: 1 / -1;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right { text-align: center; }
}

@media (max-width: 540px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner { min-height: 70px; }
  .main-nav { top: 70px; }
  .brand { width: 57px; }

  h1 {
    font-size: clamp(3rem, 15.5vw, 4.55rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-form { padding: 21px; }

  .social-card {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .social-card span:last-child {
    margin-top: 6px;
  }
}
