@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/open-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/open-sans-latin-italic.woff2') format('woff2');
}

:root {
  --black: #000;
  --panel: #111;
  --white: #f1f1f1;
  --muted: #919191;
  --line: #e2e2e2;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --site-width: 1112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--white); }
.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;
}
button, input, textarea { font: inherit; }
body.menu-open { overflow: hidden; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* Shared GoDaddy template chrome */
.site-header {
  height: 200px;
  background: var(--black);
  color: var(--white);
}

.nav-inner {
  position: relative;
  width: min(var(--site-width), calc(100% - 48px));
  height: 200px;
  margin: 0 auto;
}

.site-logo {
  position: absolute;
  top: 56px;
  left: 50%;
  display: inline-flex;
  width: 205.4px;
  height: 40px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 22px;
  text-decoration: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.site-logo:hover { color: var(--white); }

.nav-links {
  position: absolute;
  top: 114px;
  left: 50%;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.nav-links a {
  display: block;
  padding: 0 0 4px;
  color: var(--white);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { border-bottom: 1px solid var(--line); }

.hamburger { display: none; }
.mobile-nav { display: none; }

/* Home: measured two-column hero */
.hero {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
}

.hero-top {
  display: grid;
  grid-template-columns: 65.11% 34.89%;
  height: 407.25px;
}

.hero-image-wrapper { min-width: 0; overflow: hidden; }
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--panel);
  text-align: center;
}

.hero-title-block h1 {
  width: 308px;
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-body {
  width: 725.33px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
}

.hero-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.hero-body p + p { margin-top: 24px; }

/* Inner page layouts */
.inner-page {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 338.66px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.about-image { overflow: hidden; }
.about-image img { width: 100%; height: auto; }
.about-text { padding-top: 0; }
.about-text h2 { display: none; }
.about-text p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.blog-page { padding-top: 40px; }
.posts-coming-soon {
  width: 726px;
  max-width: 100%;
  min-height: 56px;
  margin: 0 auto;
  padding: 16px 24px;
  background: var(--panel);
  color: var(--muted);
  text-align: center;
}

.news-page { padding-top: 40px; }
.news-page h1 {
  width: 100%;
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
}
.news-list {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 24px;
}
.news-list li,
.news-list .news-item {
  padding-left: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}
.news-list .news-item { display: list-item; }
.news-list .news-num { display: none; }
.news-list a { color: var(--white); text-decoration: underline; }
.news-list a:hover { color: var(--muted); }

.contact-page { padding-top: 40px; }
.contact-form { width: 726px; max-width: 100%; margin: 0 auto; }
.contact-form h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 27.5px;
  text-align: center;
}
.form-group {
  position: relative;
  margin: 0 0 24px;
}
.form-group label {
  position: absolute;
  top: 16px;
  left: 8px;
  z-index: 1;
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 22px;
  pointer-events: none;
}
.form-group input {
  display: block;
  width: 100%;
  height: 54px;
  padding: 23px 8px 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
}
.form-group textarea {
  display: block;
  width: 100%;
  height: 146px;
  padding: 16px 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  resize: vertical;
  background: transparent;
  color: var(--white);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--white); }
.form-group:last-of-type { margin-bottom: 29px; }
.btn {
  display: block;
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.btn:hover { background: var(--line); }
.recaptcha-note {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}
.recaptcha-note a { color: var(--white); }

/* Social row used by the source template */
.social-section {
  width: min(var(--site-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0;
}
.contact-page + .social-section { padding-top: 96px; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.social-btn {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}
.social-btn i { font-size: 18px; }
.social-btn svg,
.social-btn img { display: block; width: 18px; height: 18px; }
.social-btn .monogram { font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; }
.social-btn:hover { transform: scale(1.04); }
.social-btn--c0 { background: #ff715b; }
.social-btn--pinterest { background: #bd081c; }
.social-btn--linktree { background: #43e660; }
.social-btn--x { background: #303030; border: 1px solid #5a5a5a; }
.social-btn--issuu { background: #f36d5d; }
.social-btn--crunchbase { background: #0288d1; }
.social-btn--medium { background: #454545; border: 1px solid #6a6a6a; }
.social-btn--youtube { background: #f00; }
.social-btn--facebook { background: #1877f2; }
.social-btn--instagram { background: #e4405f; }
.social-btn--linkedin { background: #0a66c2; }
.social-btn--c1 { background: #9632d0; }
.social-btn[data-platform="f6s"] { background: #ff715b; }
.social-btn[data-platform="pinterest"] { background: #e60023; }
.social-btn[data-platform="linktree"] { background: #43e655; color: #000; }
.social-btn[data-platform="x"] { background: #303030; }
.social-btn[data-platform="issuu"] { background: #ff641e; }
.social-btn[data-platform="crunchbase"] { background: #0797d4; }
.social-btn[data-platform="medium"] { background: #454545; }
.social-btn[data-platform="youtube"] { background: #f00; }
.social-btn[data-platform="facebook"] { background: #1976ed; }
.social-btn[data-platform="instagram"] { background: #df2168; }
.social-btn[data-platform="linkedin"] { background: #0878c1; }
.social-btn[data-platform="podcast"] { background: #9632d0; }
.social-btn::after,
.social-btn::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s, transform .18s;
}
.social-btn::after {
  content: attr(data-tooltip);
  bottom: 100%;
  margin-bottom: 6px;
  padding: 4px 10px;
  background: #1a1a2e;
  color: #fff;
  font-size: 12.5px;
  white-space: nowrap;
  border-radius: 5px;
  pointer-events: none;
}
.social-btn::before {
  content: '';
  bottom: 100%;
  border: 5px solid transparent;
  border-top-color: #1a1a2e;
}
.social-btn:hover::after,
.social-btn:hover::before {
  opacity: 1;
  visibility: visible;
}
.social-btn:hover::after { transform: translateX(-50%) translateY(-4px); }
.social-btn:hover::before { transform: translateX(-50%) translateY(-2px); }

.site-footer {
  padding: 16px 24px 80px;
  background: var(--black);
  color: var(--muted);
  text-align: center;
}
.footer-nav { display: none; }
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Faithful mobile breakpoint */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 767px) {
  .site-header { height: 88px; }
  .nav-inner {
    width: calc(100% - 48px);
    height: 88px;
  }
  .site-logo { top: 24px; width: 205.4px; height: 40px; padding: 0 16px; font-size: 22px; }
  .nav-links { display: none; }
  .hamburger {
    position: absolute;
    top: 24px;
    left: 0;
    display: block;
    width: 46.8px;
    height: 40px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--white);
  }
  .hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px 0 5px 11px;
    background: var(--white);
  }
  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    background: var(--black);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--white); font-size: 22px; text-decoration: none; }
  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 32px;
  }

  .hero { width: 312px; margin: 0 auto; }
  .hero-top { display: block; height: auto; }
  .hero-image-wrapper { width: 312px; height: 175.5px; }
  .hero-image-wrapper img { width: 312px; height: 175.5px; object-fit: cover; }
  .hero-title-block { width: 312px; min-height: 243px; padding: 56px 24px; }
  .hero-title-block h1 { width: 264px; font-size: 32px; line-height: 38.4px; }
  .hero-body { width: 312px; padding-top: 56px; }
  .hero-body p { font-size: 16px; line-height: 24px; }

  .inner-page { width: 312px; padding-top: 32px; }
  .about-grid { display: block; }
  .about-image img { width: 312px; height: auto; }
  .about-text { padding-top: 32px; }
  .about-text p { margin-bottom: 24px; }

  .blog-page, .news-page, .contact-page { padding-top: 32px; }
  .posts-coming-soon { width: 312px; }
  .news-page h1 { font-size: 28px; line-height: 35px; margin-bottom: 24px; }
  .news-list { width: 312px; padding-left: 36px; }
  .news-list li { line-height: 24px; }
  .contact-form { width: 312px; }
  .contact-form h1 { margin-bottom: 24px; }
  .form-group { margin-bottom: 24px; }
  .form-group:last-of-type { margin-bottom: 29px; }
  .social-section { width: 312px; padding: 72px 0; }
  .contact-page + .social-section { padding-top: 88px; }
  .site-footer { padding: 5px 24px 80px; }
}
