/* Base */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f5f7;
  --bg-alt: #ffffff;
  --text: #16161d;
  --muted: #6c6c7a;
  --accent: #7b1f3a;      /* deep wine */
  --accent-soft: #f3e4ea;
  --border: #e0e0e7;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 15, 25, 0.12);
}

html, body {
  height: 100%;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 245, 247, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
}

/* Hero */

.hero {
  padding: 3.25rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.2vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  box-shadow: 0 22px 50px rgba(123, 31, 58, 0.4);
}

.btn.outline {
  border-color: rgba(0, 0, 0, 0.15);
  background: #fff;
  color: var(--text);
}

.btn.outline:hover {
  background: #f0f0f4;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.hero-image-wrap {
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
}

/* Sections */

.section {
  padding: 3.25rem 0;
  background: transparent;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
}

.section-header p {
  color: var(--muted);
}

/* Cards */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.card p {
  margin-bottom: 0.5rem;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.card-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin-top: 0.5rem;
}

.about-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  background: #fff;
}

.about-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.list {
  list-style: none;
  margin-top: 0.6rem;
}

.list li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.footer-note {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    gap: 0.6rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .cards {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.6rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .nav {
    flex-wrap: wrap;
    padding-bottom: 0.2rem;
  }
}
