:root {
  --bg: #efefef;
  --panel: #f3f3f3;
  --text: #202225;
  --text-secondary: #46484d;
  --text-tertiary: #85868b;
  --text-footer-left: #7f8084;
  --text-footer-right: #6f7074;
  --text-contact: #2e2f33;
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-15: rgba(255, 255, 255, 0.15);
  --hover-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  --border-light: #dadada;
  --muted: #77787d;
  --soft: #e8e8e8;
  --icon-bg: #e4e4e4;
  --accent: #ecbdc8;

  --frame-max-width: 1280px;
  --frame-min-height: 0;
  --nav-height: 78px;
  --left-column-width: 410px;
  --logo-width: 190px;
  --content-max-width: 300px;

  --fs-eyebrow: 15px;
  --fs-heading: 38px;
  --fs-body: 16px;
  --fs-link: 13px;
  --fs-footer-left: 12px;
  --fs-footer-right: 12px;
  --fs-signature-name: 30px;
  --fs-signature-role: 10px;

  --lh-heading: 1.1;
  --lh-body: 1.6;
  --lh-link: 16px;

  --icon-circle-size: 46px;
  --icon-size: 24px;
  --contact-icon-size: 15px;
  --contact-height: 40px;
  --signature-width: 337px;
  --signature-height: 116px;
  --signature-padding-x: 24px;
  --signature-padding-y: 14px;
  --signature-gap: 4px;

  --split-left: 30%;
  --split-fade-start: 32%;
  --split-fade-end: 38%;
  --split-right-color: #dfdfdf;
  --accent-hover: #f1c7d1;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-nav {
  width: 100%;
  max-width: var(--frame-max-width);
  min-height: var(--nav-height);
  padding: 23px 38px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    90deg,
    var(--panel) 0,
    var(--panel) var(--split-left),
    #f6f6f6 var(--split-fade-start),
    var(--split-right-color) var(--split-fade-end),
    var(--split-right-color) 100%
  );
  backdrop-filter: blur(6px);
}

.frame {
  width: 100%;
  max-width: var(--frame-max-width);
  display: grid;
  grid-template-columns: var(--left-column-width) 1fr;
  background: var(--panel);
}

.left-panel {
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 36px 50px 28px;
}

.brand img {
  width: var(--logo-width);
  height: auto;
  display: block;
}

.hero-copy {
  margin-top: 118px;
}

.eyebrow {
  margin: 0;
  font-size: var(--fs-eyebrow);
  letter-spacing: 4.5px;
  font-weight: 400;
  color: var(--text-tertiary);
}

h1 {
  margin: 16px 0 28px;
  font-size: var(--fs-heading);
  line-height: var(--lh-heading);
  font-weight: 600;
}

.description {
  margin: 0;
  max-width: var(--content-max-width);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-secondary);
  letter-spacing: -0.1px;
}

.social-links {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 26px;
  text-decoration: none;
  color: var(--text);
}

.icon-wrap {
  width: var(--icon-circle-size);
  height: var(--icon-circle-size);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
}

.icon-wrap img {
  width: var(--icon-size);
  height: var(--icon-size);
  object-fit: contain;
}

.label {
  display: inline-flex;
  align-items: center;
  font-family: "Syncopate", Arial, sans-serif;
  font-size: var(--fs-link);
  line-height: var(--lh-link);
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--panel);
  border-radius: 8px;
  padding: 15px 18px 11px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  margin-right: 12px;
  font-size: var(--fs-link);
  line-height: 1;
  transform: translateY(-1px);
}

.social-row.primary .label {
  background: var(--accent);
}

.social-row:hover .label {
  background: var(--white);
  box-shadow: var(--hover-shadow);
  transform: translateY(-1px);
}

.social-row.primary:hover .label {
  background: var(--accent-hover);
}

.site-footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 24px;
}

.left-footer {
  margin: 0 0 0 50px;
  padding: 0;
  line-height: 1;
  font-size: var(--fs-footer-left);
  letter-spacing: 1.6px;
  color: var(--text-footer-left);
}

.right-panel {
  padding: 0 0 20px 0;
  display: flex;
  flex-direction: column;
}

.top-contact {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 0;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  height: var(--contact-height);
  padding: 3px 16px 0 16px;
  color: var(--text-contact);
  text-decoration: none;
  font-family: "Syncopate", Arial, sans-serif;
  font-size: var(--fs-link);
  line-height: var(--lh-link);
  letter-spacing: 0.4px;
  font-weight: 700;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-pill:hover {
  background: var(--white);
  box-shadow: var(--hover-shadow);
  transform: translateY(-1px);
}

.contact-pill img {
  width: var(--contact-icon-size);
  height: var(--contact-icon-size);
}

.photo-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.photo-wrap > img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  object-fit: cover;
}

.photo-signature {
  position: absolute;
  right: 38px;
  bottom: 70px;
  width: var(--signature-width);
  height: var(--signature-height);
  padding: var(--signature-padding-y) var(--signature-padding-x);
  background: var(--white-15);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--signature-gap);
  overflow: hidden;
}

.photo-signature .name {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-signature-name);
  line-height: 1.05;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
  max-width: 100%;
}

.photo-signature .role {
  margin: 0;
  color: var(--white-90);
  font-size: var(--fs-signature-role);
  line-height: 1.2;
  letter-spacing: 5px;
  font-weight: 300;
  white-space: nowrap;
  max-width: 100%;
}

.credit {
  margin: 0;
  padding: 0 38px 0 0 ;
  line-height: 1;
  text-align: right;
  font-size: var(--fs-footer-right);
  letter-spacing: 2.4px;
  color: var(--text-footer-right);
}

@media (max-width: 1024px) {
  .frame {
    grid-template-columns: 1fr;
  }

  .top-nav {
    height: auto;
    min-height: var(--nav-height);
    padding: 12px 20px;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-nav .brand {
    flex: 1 1 auto;
    min-width: 160px;
    display: flex;
    justify-content: center;
  }

  .top-nav .brand img {
    width: clamp(150px, 36vw, var(--logo-width));
  }

  .top-nav .top-contact {
    flex: 1 1 100%;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .top-nav .contact-pill {
    height: 36px;
    padding: 0 12px;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0.2px;
  }

  .right-panel {
    padding: 20px 20px 12px;
  }

  .left-panel {
    padding: 30px 20px;
  }

  .hero-copy {
    margin-top: 12px;
    text-align: center;
  }

  .eyebrow {
    letter-spacing: 4px;
  }

  h1 {
    margin: 12px 0 18px;
  }

  .description {
    max-width: none;
  }

  .social-links {
    margin-top: 30px;
    gap: 12px;
  }

  .left-footer {
    margin: 0;
    text-align: center;
  }

  .credit {
    padding: 0;
    line-height: 1.2;
    text-align: center;
  }

  .site-footer {
    margin: 4px 20px 18px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .photo-wrap {
    min-height: 40vh;
  }
  .photo-signature {
    right: 10px;
    bottom:10px;
  }
}
