/* LooCee — shared styles */

:root {
  --bg-dark: #6f8b96;
  --bg-light: #8ba6b0;
  --bg-footer: #5f7a85;
  --text-light: #ffffff;
  --text-dark: #1c2b30;
  --accent-pill: #7f9aa4;
  --accent-pill-border: rgba(255, 255, 255, 0.6);
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* Nav */

header.site-nav {
  padding: 28px 0 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  font-weight: 400;
  opacity: 0.85;
}

nav.links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 14px;
}

nav.links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

nav.links a.active,
nav.links a:hover {
  border-bottom-color: currentColor;
}

/* Hero */

.hero {
  padding: 90px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

h1.hero-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 46ch;
  font-size: 16px;
}

.pill {
  display: inline-block;
  background: var(--accent-pill);
  border: 1px solid var(--accent-pill-border);
  color: var(--text-light);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 6px 12px 6px 0;
  transition: background 0.15s ease;
}

.pill:hover {
  background: #6a8891;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

blockquote {
  margin: 0;
  font-size: 16px;
}

blockquote p {
  margin: 0 0 10px;
}

blockquote cite {
  font-style: normal;
  font-size: 14px;
  opacity: 0.85;
}

/* Photo section */

.photo-block {
  padding: 0 0 90px;
}

.photo-block img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  max-height: 640px;
}

/* Two column content (about / bio) */

.split {
  padding: 70px 0;
  background: var(--bg-light);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-grid img {
  border-radius: 4px;
  object-fit: cover;
  max-height: 480px;
  width: 100%;
}

h2.section-title {
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 18px;
  font-weight: 700;
}

.split-copy p {
  max-width: 50ch;
  font-size: 15px;
  margin: 0 0 16px;
}

/* Contact */

.contact-section {
  padding: 80px 0;
  background: var(--bg-footer);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

form.enquiry {
  display: grid;
  gap: 18px;
  max-width: 480px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  opacity: 0.9;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  color: var(--text-dark);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

button.submit {
  justify-self: start;
  background: #ffffff;
  color: var(--text-dark);
  border: none;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

button.submit:hover {
  background: #e8eef0;
}

.contact-photo img {
  border-radius: 4px;
  max-height: 480px;
  object-fit: cover;
  width: 100%;
}

/* Footer */

footer.site-footer {
  padding: 40px 0 60px;
  background: var(--bg-footer);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

footer.site-footer a {
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 780px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 60px 0 60px;
  }
}
