:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: #151515;
  --panel-2: #1b1b1b;
  --text: #f6efe9;
  --muted: #c9bbb2;
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.2);
  --pink: #e5007d;
  --orange: #ff8a00;
  --gold: #ffc241;
  --purple: #8c28b9;
  --coral: #ff6b4d;
  --peach: #ffd2bf;
  --shadow: 0 24px 80px rgba(0,0,0,0.32);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(229,0,125,0.09), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(255,138,0,0.08), transparent 22%),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.display, h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2.4rem, 7vw, 6rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); letter-spacing: -0.04em; }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
h4 { font-size: 1.2rem; }
p { margin: 0 0 16px; }

.text-muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7,7,7,0.88);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--orange);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-mark span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
}

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

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

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.active { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: var(--shadow);
}

.hero {
  padding: 84px 0 50px;
}

.grid-2 { 
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}

.contact-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 720px;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  min-width: 0;
}

.contact-card--enquiry {
  width: 100%;
  max-width: 100%;
  padding: 40px;
  border-radius: 32px;
}

.contact-card--enquiry h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin-bottom: 20px;
}

.contact-form {
  display: block;
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.form-group {
  width: 100%;
  min-width: 0;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  padding: 18px;
  font-size: 1rem;
  line-height: 1.4;
  appearance: none;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(229,0,125,0.15);
  background: rgba(255,255,255,0.05);
}

.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.site-footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  margin-top: 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: end;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

@media (max-width: 980px) {
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nav-toggle { display: inline-block; }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(14,14,14,0.98);
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }
  .footer-links { justify-content: start; }

  .contact-card--enquiry {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0 34px;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .contact-card--enquiry {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-card--enquiry h3 {
    font-size: 1.45rem;
    text-align: center;
    margin-bottom: 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-group.full {
    grid-column: auto;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 16px;
    font-size: 16px;
  }

  .contact-form textarea {
    min-height: 140px;
  }

  .btn-submit {
    padding: 16px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .brand-mark strong {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .brand-mark span {
    font-size: 0.72rem;
  }
}


/* === Portfolio card title overflow + consistency fix === */
.card,
.seo-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-width:0;
}

.card .content,
.seo-card .content{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}

.card h3,
.seo-card h3{
  font-size:clamp(1.28rem,1.8vw,1.55rem);
  line-height:1.15;
  letter-spacing:-0.01em;
  max-width:22ch;
  word-break:break-word;
  overflow-wrap:break-word;
  hyphens:auto;
}

@media (max-width: 760px){
  .card h3,
  .seo-card h3{
    max-width:100%;
  }
}
