@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin.woff2") format("woff2-variations");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+2215;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-latin-ext.woff2") format("woff2-variations");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --hyn-bg: #ffffff;
  --hyn-surface: #ffffff;
  --hyn-ink: #1a1a1a;
  --hyn-muted: #5a5a5a;
  --hyn-line: #d9d4cc;
  --hyn-accent: #b08d57;
  --hyn-dark: #111111;
  --hyn-header-h: 88px;
  --hyn-serif: "Bodoni Moda", Georgia, serif;
  --hyn-sans: "Poppins", Helvetica, Arial, sans-serif;
  --hyn-max: 1180px;
  --hyn-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hyn-sans);
  color: var(--hyn-ink);
  background: var(--hyn-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Bodoni's hairlines vanish at small sizes unless the optical size follows
     the font size, so keep the axis automatic instead of pinning it. */
  font-optical-sizing: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.hyn-main {
  min-height: 60vh;
}

.hyn-container {
  width: min(100% - 2.5rem, var(--hyn-max));
  margin-inline: auto;
}

.hyn-container--narrow {
  width: min(100% - 2.5rem, 760px);
}

/* Header */
.hyn-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 96px;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  padding: 1.1rem clamp(1.25rem, 3vw, 2rem);
  color: #fff;
}

body:not(.home) .hyn-header {
  color: #fff;
}

.hyn-header__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-self: start;
}

.hyn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.25s var(--hyn-ease);
}

.hyn-social:hover {
  transform: translateY(-2px);
}

.hyn-social--ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.hyn-social--wa {
  background: #25d366;
}

.hyn-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.75rem;
  max-width: 920px;
  width: 100%;
  justify-self: center;
}

.hyn-nav__list {
  list-style: none;
  display: flex;
  gap: 1.85rem;
  margin: 0;
  padding: 0;
}

.hyn-nav--left .hyn-nav__list {
  justify-content: flex-end;
}

.hyn-nav--right .hyn-nav__list {
  justify-content: flex-start;
}

.hyn-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.3rem;
  white-space: nowrap;
}

.hyn-nav__item.is-active a::after,
.hyn-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--hyn-accent);
}

.hyn-logo {
  justify-self: center;
}

.hyn-logo a {
  display: inline-block;
}

.hyn-logo img,
.hyn-logo .custom-logo {
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hyn-header__tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.75rem;
  min-width: 86px;
}

/* Language switcher — mirrors socials, always on the right */
.hyn-lang {
  position: relative;
}

.hyn-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  cursor: pointer;
  min-height: 38px;
}

.hyn-lang__caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.hyn-lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  min-width: 160px;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  color: var(--hyn-ink);
  border: 1px solid var(--hyn-line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  z-index: 60;
}

.hyn-lang__option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

.hyn-lang__option:hover,
.hyn-lang__option.is-active {
  background: #f3efe8;
}

.hyn-flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.hyn-flag--es {
  background-image: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.hyn-flag--en {
  background-image:
    linear-gradient(to bottom, #fff 0, #fff 100%),
    repeating-linear-gradient(
      to bottom,
      #b22234 0 2px,
      #fff 2px 4px
    );
  background-color: #3c3b6e;
  background-size: 40% 55%, 100% 100%;
  background-repeat: no-repeat;
  background-position: left top, center;
  box-shadow: inset 0 0 0 10px #3c3b6e;
}

.hyn-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hyn-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: 0.25s var(--hyn-ease);
}

.hyn-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hyn-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.hyn-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hyn-mobile-nav,
.hyn-mobile-nav[hidden] {
  display: none !important;
}

.hyn-mobile-nav.is-open {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid !important;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.25rem;
  background: rgba(10, 10, 10, 0.94);
}

@media (min-width: 901px) {
  .hyn-mobile-nav,
  .hyn-mobile-nav.is-open,
  .hyn-mobile-nav[hidden] {
    display: none !important;
  }
}

.hyn-mobile-nav a {
  padding: 0.75rem 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Heroes */
.hyn-home-hero,
.hyn-page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), var(--hyn-hero-image);
  background-size: cover;
  background-position: center;
}

.hyn-page-hero {
  min-height: 58vh;
}

.hyn-home-hero__content,
.hyn-page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  max-width: 920px;
}

.hyn-home-hero__content {
  max-width: 1200px;
}

.hyn-home-hero__title,
.hyn-page-hero__title {
  margin: 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 5.4vw, 4rem);
  line-height: 1.28;
}

/* Two wide lines instead of four narrow ones. */
.hyn-home-hero__title {
  letter-spacing: 0.05em;
  font-size: clamp(1.85rem, 4.2vw, 3.75rem);
  line-height: 1.5;
}

.hyn-home-hero__subtitle {
  margin: 2.4rem auto 0;
  max-width: 880px;
  font-size: 0.9rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 300;
  line-height: 1.75;
}

.hyn-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hyn-accent);
}

.hyn-breadcrumb--dark {
  margin-top: 2rem;
  color: var(--hyn-muted);
}

.hyn-breadcrumb--dark a {
  color: var(--hyn-accent);
}

.hyn-breadcrumb a {
  color: var(--hyn-accent);
}

.hyn-scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
}

.hyn-scroll-hint__mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: block;
  position: relative;
}

.hyn-scroll-hint__mouse::after {
  content: "";
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  animation: hyn-scroll 1.6s infinite;
}

@keyframes hyn-scroll {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* Floating intro card overlapping hero */
.hyn-intro-overlap {
  position: relative;
  z-index: 2;
  margin-top: -4.5rem;
  padding: 0 1.25rem 3.5rem;
  background: transparent;
}

.hyn-intro-card {
  width: min(100%, 820px);
  margin: 0 auto;
  background: #fff;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 4vw, 3.5rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.hyn-intro-card p {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  line-height: 1.9;
  color: #4a4a4a;
  font-weight: 400;
}

/* Feature rows: Construcción / Interiores */
.hyn-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(100% - 2.5rem, 1120px);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: #fff;
}

.hyn-feature--reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.hyn-feature--reverse .hyn-feature__media {
  order: 2;
}

.hyn-feature__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.hyn-feature__copy {
  display: grid;
  gap: 1.15rem;
  align-content: center;
  padding: 0.5rem 0;
}

.hyn-feature__copy h2 {
  margin: 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: #111;
}

.hyn-feature__copy p {
  margin: 0;
  max-width: 34rem;
  color: #555;
  font-size: 0.98rem;
  line-height: 1.75;
  font-weight: 400;
}

.hyn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--hyn-ease), gap 0.25s var(--hyn-ease);
}

.hyn-text-link:hover {
  border-bottom-color: #111;
  gap: 0.7rem;
}

/* About home: text + photo + black quote */
.hyn-about-home {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 7rem) 1.25rem clamp(4.5rem, 9vw, 8rem);
}

.hyn-about-home__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hyn-about-home__text {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  padding-right: 0.75rem;
  align-content: center;
}

.hyn-about-home__flower {
  position: absolute;
  left: -2rem;
  top: -2.5rem;
  width: min(260px, 60vw);
  opacity: 0.14;
  pointer-events: none;
  z-index: -1;
}

.hyn-about-home__text h2 {
  margin: 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.hyn-about-home__text p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 24rem;
}

.hyn-about-home__photo-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  align-items: center;
  min-height: 420px;
}

.hyn-about-home__photo {
  margin: 0;
  width: 100%;
  max-width: 430px;
  position: relative;
  z-index: 2;
  justify-self: end;
}

.hyn-about-home__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4.1;
  object-fit: cover;
  filter: grayscale(1);
  display: block;
}

.hyn-about-home__quote {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  min-height: 300px;
  margin-left: -18%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 3.5vw, 3rem);
  justify-self: start;
}

.hyn-about-home__quote p {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 16ch;
}

/* Generic sections / projects keep working */
.hyn-section {
  padding: 4.5rem 0;
}

.hyn-section__title,
.hyn-projects__title {
  margin: 0 0 1rem;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.hyn-lead {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: var(--hyn-muted);
  line-height: 1.8;
}

/* Buttons (forms / other pages) */
.hyn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  border: 1px solid transparent;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  cursor: pointer;
  transition: 0.25s var(--hyn-ease);
  width: fit-content;
}

.hyn-btn--dark {
  background: var(--hyn-dark);
  color: #fff;
}

.hyn-btn--dark:hover {
  background: #000;
}

.hyn-btn--outline {
  border-color: var(--hyn-dark);
  color: var(--hyn-dark);
  background: transparent;
}

.hyn-btn--outline:hover {
  background: var(--hyn-dark);
  color: #fff;
}

/* Projects grid */
.hyn-projects {
  background: var(--hyn-surface);
}

.hyn-projects__header {
  max-width: 760px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.hyn-projects__intro {
  margin: 0;
  color: var(--hyn-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
  line-height: 1.8;
}

.hyn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.75rem;
}

.hyn-card__link {
  display: block;
}

.hyn-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #ddd;
}

.hyn-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--hyn-ease);
}

.hyn-card:hover .hyn-card__media img {
  transform: scale(1.04);
}

.hyn-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d9d4cc, #bdb6ab);
}

.hyn-card__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  padding: 1rem 0.15rem 0;
}

.hyn-card__number {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--hyn-ink, #1a1a1a);
  font-family: var(--hyn-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hyn-card__meta {
  min-width: 0;
}

.hyn-card__title {
  margin: 0;
  font-family: var(--hyn-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hyn-card__location {
  margin: 0.35rem 0 0;
  font-size: 0.86rem;
  color: var(--hyn-muted);
}

/* About page */
.hyn-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hyn-accent);
}

.hyn-eyebrow--light {
  color: rgba(255, 255, 255, 0.7);
}

.hyn-about-intro {
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hyn-about-intro__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.hyn-about-intro__title {
  margin: 1rem 0 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.18;
}

.hyn-about-intro__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 1.75rem auto 0;
  background: var(--hyn-accent);
}

.hyn-about-intro__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 980px;
  margin-inline: auto;
}

.hyn-about-intro__col {
  color: var(--hyn-muted);
  font-size: 1rem;
  line-height: 1.95;
}

.hyn-about-intro__col p {
  margin: 0 0 1.35rem;
}

.hyn-about-intro__col p:last-child {
  margin-bottom: 0;
}

/* Couple portrait */
.hyn-about-portrait {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.hyn-about-portrait__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

.hyn-about-portrait__figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 470px;
  justify-self: end;
  z-index: 2;
}

.hyn-about-portrait__figure::before {
  content: "";
  position: absolute;
  inset: -1.35rem;
  border: 1px solid var(--hyn-line);
  z-index: -1;
}

.hyn-about-portrait__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(1);
}

.hyn-about-portrait__panel {
  /* Space hidden behind the photo and its outer frame. */
  --hyn-panel-overlap: 4.4rem;
  --hyn-panel-gap: clamp(2rem, 3.4vw, 2.85rem);
  background: var(--hyn-dark);
  color: #fff;
  padding: clamp(2.5rem, 4.5vw, 3.75rem) var(--hyn-panel-gap) clamp(2.5rem, 4.5vw, 3.75rem) calc(var(--hyn-panel-gap) + var(--hyn-panel-overlap));
  margin-left: -3rem;
}

.hyn-about-portrait__title {
  margin: 0.85rem 0 1.5rem;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.hyn-about-portrait__quote {
  position: relative;
  margin: 0 0 1.5rem;
  padding-top: 1.5rem;
  font-family: var(--hyn-sans);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.7;
  text-align: justify;
  text-wrap: pretty;
}

.hyn-about-portrait__quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--hyn-accent);
}

.hyn-about-portrait__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: justify;
  text-wrap: pretty;
}

/* Stats strip */
.hyn-about-stats {
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.hyn-about-stats__list {
  list-style: none;
  margin: 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--hyn-line);
  border-bottom: 1px solid var(--hyn-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: center;
}

.hyn-about-stats__list li + li {
  border-left: 1px solid var(--hyn-line);
}

.hyn-about-stats__value {
  display: block;
  font-family: var(--hyn-serif);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: 0.04em;
}

.hyn-about-stats__label {
  display: block;
  margin-top: 0.6rem;
  color: var(--hyn-muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.7;
}

/* Team */
.hyn-about-team {
  padding: 0 0 clamp(4rem, 8vw, 6.5rem);
  text-align: center;
}

.hyn-about-team__header {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.hyn-about-team__title {
  margin: 0.9rem 0 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

.hyn-about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.hyn-member {
  display: grid;
  justify-items: center;
}

.hyn-member__avatar {
  position: relative;
  width: clamp(180px, 22vw, 250px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  outline: 1px solid var(--hyn-line);
  outline-offset: 12px;
  transition: outline-color 0.4s var(--hyn-ease), outline-offset 0.4s var(--hyn-ease);
}

.hyn-member__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.8s var(--hyn-ease), filter 0.6s var(--hyn-ease);
}

.hyn-member:hover .hyn-member__avatar {
  outline-color: var(--hyn-accent);
  outline-offset: 16px;
}

.hyn-member:hover .hyn-member__avatar img {
  transform: scale(1.05);
}

.hyn-member__name {
  margin: 2.35rem 0 0.5rem;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.hyn-member__role {
  margin: 0;
  color: var(--hyn-accent);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hyn-member__rule {
  display: block;
  width: 34px;
  height: 1px;
  margin: 1.35rem 0;
  background: var(--hyn-line);
}

.hyn-member__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--hyn-muted);
  font-size: 0.92rem;
  line-height: 2;
}

/* About CTA */
.hyn-about-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4rem, 8vw, 6.5rem);
  border-top: 1px solid var(--hyn-line);
  text-align: center;
}

.hyn-about-cta__title {
  margin: 0 0 1rem;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.hyn-about-cta__text {
  margin: 0 auto 2rem;
  max-width: 520px;
  color: var(--hyn-muted);
  line-height: 1.9;
}

.hyn-about-cta .hyn-btn {
  margin-inline: auto;
}

.hyn-about-photos__grid,
.hyn-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.hyn-photo-slot__frame,
.hyn-team-card__photo {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #ebe7e0;
  border: 1px dashed #b9b2a7;
  color: #8a8378;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hyn-team {
  background: var(--hyn-surface);
}

.hyn-team-card {
  text-align: center;
}

.hyn-team-card h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--hyn-serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hyn-team-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--hyn-muted);
  font-size: 0.95rem;
}

.hyn-team-card li + li {
  margin-top: 0.2rem;
}

/* Contact */
.hyn-contact {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 7rem);
}

.hyn-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.hyn-contact__heading {
  margin: 1rem 0 1.5rem;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.2;
}

.hyn-contact__intro {
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  max-width: 42ch;
  color: var(--hyn-muted);
  line-height: 1.95;
}

.hyn-contact__details {
  margin: 0;
  border-top: 1px solid var(--hyn-line);
}

.hyn-contact__detail {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--hyn-line);
}

.hyn-contact__detail dt {
  margin: 0;
  color: var(--hyn-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.9;
}

.hyn-contact__detail dd {
  margin: 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.98rem;
  line-height: 1.9;
}

.hyn-contact__detail a {
  color: var(--hyn-ink);
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--hyn-ease), color 0.3s var(--hyn-ease);
}

.hyn-contact__detail a:hover {
  color: var(--hyn-accent);
  border-bottom-color: var(--hyn-accent);
}

.hyn-contact__card {
  background: #faf9f7;
  border: 1px solid var(--hyn-line);
  padding: clamp(1.85rem, 4vw, 3.25rem);
}

.hyn-contact__card-title {
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--hyn-line);
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.hyn-contact-form {
  display: grid;
  gap: 1.85rem;
  cursor: default;
}

.hyn-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.85rem;
}

.hyn-field {
  display: grid;
  gap: 0.55rem;
  cursor: text;
}

.hyn-field span {
  color: var(--hyn-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: default;
}

.hyn-field input,
.hyn-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--hyn-line);
  border-radius: 0;
  background: transparent;
  padding: 0.55rem 0;
  color: var(--hyn-ink);
  font-family: inherit;
  font-size: 1rem;
  cursor: text;
  transition: border-color 0.3s var(--hyn-ease);
}

.hyn-field textarea {
  resize: vertical;
  line-height: 1.8;
}

.hyn-field input:focus,
.hyn-field textarea:focus {
  outline: 0;
  border-bottom-color: var(--hyn-accent);
}

.hyn-field .hyn-field__error {
  color: #8a1f1f;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hyn-field .hyn-field__error:empty {
  display: none;
}

.hyn-field.is-invalid input,
.hyn-field.is-invalid textarea {
  border-bottom-color: #8a1f1f;
}

.hyn-contact-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 0.35rem;
}

.hyn-contact-form__note {
  margin: 0;
  color: var(--hyn-muted);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hyn-honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  overflow: hidden !important;
}

.hyn-form-notice {
  margin: 0;
  padding: 0.95rem 1.15rem;
  border-left: 2px solid currentColor;
  background: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hyn-form-notice--success {
  color: #2f6b46;
}

.hyn-form-notice--error {
  color: #8a1f1f;
}

/* Single project */
.hyn-single-project {
  padding-bottom: 4rem;
  background: var(--hyn-surface);
}

.hyn-single-project__hero img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}

.hyn-single-project__header {
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.hyn-single-project__header h1 {
  margin: 0;
  font-family: var(--hyn-serif);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hyn-single-project__location {
  margin: 0.5rem 0 0;
  color: var(--hyn-muted);
}

.hyn-single-project__content {
  color: var(--hyn-muted);
}

.hyn-single-project__gallery {
  margin-top: 2.5rem;
}

.hyn-single-project__gallery h2 {
  font-family: var(--hyn-serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-align: center;
}

.hyn-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.hyn-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hyn-single-project__back {
  margin-top: 2.5rem;
  text-align: center;
}

/* Footer */
.hyn-footer {
  position: relative;
  color: #f2f2f2;
  background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.78)), var(--hyn-footer-image);
  background-size: cover;
  background-position: center;
  padding: 0;
  text-align: center;
}

.hyn-footer__main {
  padding: clamp(3.5rem, 8vw, 5.5rem) 1.25rem 3rem;
}

.hyn-footer__logo img {
  height: 64px;
  width: auto;
  margin: 0 auto 1.35rem;
  filter: brightness(0) invert(1);
}

.hyn-footer__tagline {
  max-width: 620px;
  margin: 0 auto 1.5rem;
  color: #e8e8e8;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.hyn-footer__social {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.hyn-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: min(100% - 2.5rem, 1120px);
  margin: 0 auto;
  padding: 1rem 0 1.25rem;
  border-top: 1px dotted rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  color: #cfcfcf;
}

.hyn-footer__copy,
.hyn-footer__legal {
  margin: 0;
}

.hyn-footer__legal a:hover {
  color: #fff;
}

/* Motion */
.hyn-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s var(--hyn-ease) var(--hyn-reveal-delay, 0ms),
    transform 0.75s var(--hyn-ease) var(--hyn-reveal-delay, 0ms);
  will-change: opacity, transform;
}

.hyn-reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hyn-reveal,
  .hyn-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hyn-header__inner,
  .hyn-nav {
    display: none;
  }

  .hyn-menu-toggle {
    display: inline-block;
  }

  .hyn-feature,
  .hyn-feature--reverse,
  .hyn-about-home__inner,
  .hyn-contact__grid,
  .hyn-about-photos__grid,
  .hyn-team__grid,
  .hyn-about-intro__columns,
  .hyn-about-portrait__grid,
  .hyn-contact-form__row,
  .hyn-about-team__grid,
  .hyn-grid,
  .hyn-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hyn-about-intro__columns {
    gap: 1.35rem;
  }

  .hyn-about-portrait__figure::before {
    inset: -0.85rem;
  }

  .hyn-about-portrait__panel {
    margin: 0;
    padding: clamp(2rem, 7vw, 2.75rem);
  }

  .hyn-about-stats__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .hyn-about-stats__list li + li {
    border-left: 0;
    border-top: 1px solid var(--hyn-line);
    padding-top: 2rem;
  }

  .hyn-feature--reverse .hyn-feature__media {
    order: 0;
  }

  .hyn-about-home__photo-wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
  }

  .hyn-about-home__photo {
    width: min(100%, 360px);
    justify-self: center;
  }

  .hyn-about-home__quote {
    margin: -2.75rem 0 0;
    width: min(100%, 340px);
    max-width: 340px;
    min-height: 280px;
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .hyn-intro-overlap {
    margin-top: -3rem;
  }

  .hyn-home-hero,
  .hyn-page-hero {
    min-height: 78vh;
  }

  .hyn-page-hero {
    min-height: 48vh;
  }

  .hyn-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hyn-header {
    grid-template-columns: auto 1fr;
  }

  .hyn-header__tools {
    grid-column: 2;
  }

  .hyn-card__title {
    font-size: 1.15rem;
  }

  .hyn-feature__copy {
    padding: 0;
  }

  .hyn-contact__detail {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hyn-contact-form__footer .hyn-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
