/* The Corporate Concierge — static site styles */

:root {
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-text: #2c241c;
  --color-muted: #5c534a;
  --color-accent: #8b6914;
  --color-accent-hover: #6d5210;
  --color-border: #e5dfd4;
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 8px 32px rgba(44, 36, 28, 0.08);
  --radius: 4px;
  --content-width: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent-hover);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-surface);
  color: var(--color-text);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  outline: 2px solid var(--color-accent);
}

.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  max-height: 72px;
  width: auto;
}

@media (min-width: 768px) {
  .logo img {
    max-height: 88px;
  }
}

.nav-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--color-accent);
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__bars span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  flex: 1 0 100%;
  width: 100%;
}

@media (min-width: 900px) {
  .site-nav {
    flex: 0 1 auto;
    width: auto;
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav.is-open ul {
  display: flex;
}

@media (min-width: 900px) {
  .site-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem 1.5rem;
  }
}

.site-nav a {
  display: block;
  padding: 0.6rem 0.25rem;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
}

@media (min-width: 900px) {
  .site-nav a {
    padding: 0.35rem 0;
  }
}

main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero__image {
  text-align: center;
}

.hero__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero__text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.tagline {
  font-size: 1.125rem;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
}

.prose {
  max-width: 48rem;
}

.prose p {
  margin: 0 0 1rem;
}

.legal-prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  margin: 2rem 0 0.65rem;
  color: var(--color-text);
}

.legal-prose h2:first-of-type {
  margin-top: 1.5rem;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0 0 0.35rem;
}

.page-subtitle {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 400;
  margin: 2.75rem 0 1.25rem;
}

.about-banner,
.home-banner {
  margin: -2rem -1.25rem 2rem;
}

.about-banner img,
.home-banner img {
  display: block;
  width: 100%;
  max-height: min(52vh, 480px);
  object-fit: cover;
}

/* Keep faces visible: tall photos were centred and cropped top/bottom. */
.about-banner img {
  object-position: top center;
  max-height: min(62vh, 560px);
}

.team-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.section-heading + .team-grid {
  margin-top: 0;
}

@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.team-card__photo {
  margin: -1.5rem -1.5rem 1rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-border);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.15rem;
}

.team-card .role {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin: 0 0 1rem;
  font-weight: 600;
}

.team-card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--color-text);
}

.about-photos {
  margin-top: 2.5rem;
}

.about-photos .section-heading {
  margin-top: 0;
  margin-bottom: 1rem;
}

.about-photo-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}

.about-photo-tile {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--color-border);
}

.about-photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonials-intro {
  margin-bottom: 2rem;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial {
  background: var(--color-surface);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-soft);
}

.testimonial blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--color-text);
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.contact-highlight {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-soft);
}

.contact-highlight a {
  font-size: 1.15rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-highlight__label {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.contact-highlight__email {
  margin: 0;
}

.site-footer {
  background: #2a2218;
  color: #e8e2d8;
  margin-top: auto;
}

.site-footer a {
  color: #f0e6c8;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__ribbon {
  height: 4px;
  background: linear-gradient(90deg, #6d5210, #c9a227, #6d5210);
}

.site-footer__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-meta {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-meta strong {
  color: #fff;
  font-weight: 600;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(232, 226, 216, 0.75);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  color: rgba(232, 226, 216, 0.85);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.fl-page {
  flex: 1;
  display: flex;
  flex-direction: column;
}
