/*
  Visual match for https://www.italianlawoffice.org (Wix theme tokens from published HTML).
  Not a byte-for-byte clone of Wix bundles — static HTML/CSS/JS equivalent.
*/
:root {
  /* Wix site palette (rgb tuples from :root --color_*) */
  --color-11: #ffffff;
  --color-14: #06103c;
  --color-15: #06103c;
  --color-18: #444c6d;
  --color-36: #ffffff;
  --color-37: #06103c;
  --color-41: #785e26;
  --color-43: #e8e8e8;
  --color-45: #06103c;
  --color-46: #06103c;
  --color-12: #c1c3ce;
  --site-width: 980px;
  --font-display: "Fahkwang", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Fahkwang", ui-sans-serif, system-ui, sans-serif;
  --font-0: normal 400 51px/1.25em var(--font-display);
  --font-5: normal 400 21px/1.4em var(--font-body);
  --font-7: normal 400 17px/1.4em var(--font-body);
  --font-8: normal 400 15px/1.5em var(--font-body);
  --font-2-section: normal 400 clamp(36px, 5vw, 51px) / 1.25em var(--font-display);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-15);
  background: var(--color-11);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  background: var(--color-11);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-11);
  border-bottom: 0 solid var(--color-15);
  box-shadow: 0 1px 0 rgba(6, 16, 60, 0.06);
}

.header-inner {
  position: relative;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 55px;
}

.brand {
  text-decoration: none;
  color: inherit;
}

.brand-name {
  font: var(--font-8);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-15);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-12);
  background: var(--color-11);
  border-radius: 0;
  padding: 0.45rem 0.65rem;
  font: inherit;
  cursor: pointer;
  color: var(--color-15);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  font: var(--font-8);
  font-weight: 500;
  color: var(--color-15);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover {
  color: var(--color-18);
}

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* —— Hero (first strip: image + navy overlay + white type) —— */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: none;
}

.hero--home {
  min-height: min(78vh, 720px);
  display: flex;
  align-items: stretch;
}

.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/site/homepagegirl.jpg");
  background-size: cover;
  /* Shift subject right so face sits in the open right column, away from top-left headline */
  background-position: 30% 36%;
  z-index: 0;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 60, 0.55);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 4rem 1.25rem 4.5rem;
  width: 100%;
  color: var(--color-36);
}

/* Home: headline top-left; copy + CTAs in left column; right column stays clear over portrait */
.hero--home .hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, min(100%, 26rem)) minmax(3rem, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "headline spacer"
    "main spacer";
  align-content: start;
  column-gap: clamp(0.75rem, 4vw, 2.5rem);
  row-gap: 0.75rem;
  padding-top: 1.5rem;
  /* Keep hero blocks pinned to the left edge across viewport sizes */
  max-width: none;
  margin: 0;
  padding-left: clamp(0.75rem, 2vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
}

.hero--home .hero-title {
  grid-area: headline;
  align-self: start;
  margin: 0;
  max-width: none;
  /* ~half of site display size (was 51px) */
  font: normal 500 clamp(16px, 2.15vw, 26px) / 1.2em var(--font-display);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-36);
  white-space: nowrap;
}

.hero--home .hero-main {
  grid-area: main;
  align-self: stretch;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.hero--home .hero-panel {
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(6, 16, 60, 0.25) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero--home .hero-intro {
  margin-bottom: 1rem;
  align-self: stretch;
}

.hero--home .hero-intro .hero-subtitle {
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.hero--home .hero-intro .hero-lede {
  margin-bottom: 1rem;
  max-width: 38ch;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero--home .hero-cta-start {
  margin: 0;
}

.hero--home .hero-promo {
  margin-top: 0.35rem;
  align-self: stretch;
  max-width: 100%;
}

.hero--home .hero-promo .hero-invest {
  margin: 0 0 1.1rem;
}

.hero--home .hero-promo .hero-invest h3 {
  font: var(--font-5);
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
  color: var(--color-36);
}

.hero--home .hero-promo .hero-invest p {
  font: var(--font-7);
  margin: 0;
  max-width: 38ch;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero--home .hero-promo .hero-cta-learn {
  margin: 0;
  padding: 0;
}

@media (max-width: 719px) {
  .hero--home .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "main";
    grid-template-rows: auto 1fr;
    row-gap: 1.25rem;
    padding-top: 1.25rem;
  }

  .hero--home .hero-main {
    align-self: stretch;
    min-height: min(42vh, 320px);
  }

  .hero--home::after {
    background-position: 44% 30%;
  }
}

.hero-title {
  font: var(--font-0);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  color: var(--color-36);
}

.hero-subtitle {
  font: var(--font-5);
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--color-36);
}

.hero-lede {
  font: var(--font-7);
  margin: 0 0 1rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Wix-style outline button on hero */
.btn-wix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 2rem;
  font: var(--font-8);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--color-36);
  color: var(--color-36);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.btn-wix:hover {
  background: var(--color-36);
  color: var(--color-37);
}

.btn-wix--dark {
  border-color: var(--color-15);
  color: var(--color-15);
}

.btn-wix--dark:hover {
  background: var(--color-15);
  color: var(--color-36);
}

/* —— Invest promo (home hero + reusable grid) —— */
.section-invest-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .section-invest-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.section-invest-inner h2,
.section-invest-inner h3 {
  font: var(--font-5);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--color-45);
}

.section-invest-inner > div > p {
  font: var(--font-7);
  margin: 0;
  color: var(--color-45);
}

.section {
  padding: 3.25rem 1.25rem;
}

.section-inner {
  max-width: var(--site-width);
  margin: 0 auto;
}

.section-title {
  font: var(--font-2-section);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.75rem;
  color: var(--color-45);
}

.section-kicker {
  font: var(--font-5);
  text-align: center;
  margin: 0 0 0.35rem;
  color: var(--color-45);
}

.section-sub {
  font: var(--font-8);
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 56ch;
  color: var(--color-18);
}

.wix-rule {
  border: 0;
  border-top: 2px solid var(--color-12);
  margin: 2.5rem 0;
}

.grid-2 {
  display: grid;
  gap: 2.5rem 2rem;
  position: relative;
}

@media (min-width: 880px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .grid-2::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: var(--color-43);
    transform: translateX(-0.5px);
    pointer-events: none;
  }
}

.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.card h3 {
  font: var(--font-5);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1rem;
  color: var(--color-45);
}

.card p {
  margin: 0 0 0.85rem;
  font: var(--font-8);
  text-align: justify;
  color: var(--color-45);
}

.card p:last-child {
  margin-bottom: 0;
}

.card--accent h4 {
  font: var(--font-8);
  font-weight: 700;
  margin: 1.25rem 0 0.35rem;
  color: var(--color-45);
}

.card--accent p {
  margin-bottom: 0.5rem;
}

.post-list {
  display: grid;
  gap: 2rem;
}

.post-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) 1fr;
  gap: 1.5rem;
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-43);
  padding-bottom: 2rem;
  background: transparent;
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.post-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 640px) {
  .post-card {
    grid-template-columns: 1fr;
  }
}

.post-card__media {
  border-radius: 0;
  overflow: hidden;
  border: none;
}

.post-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.post-card h2 {
  font: var(--font-5);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.3;
  margin: 0 0 0.5rem;
  color: var(--color-45);
}

.post-meta {
  font: var(--font-8);
  font-size: 13px;
  color: var(--color-18);
  margin: 0 0 0.75rem;
}

.post-excerpt {
  margin: 0;
  font: var(--font-8);
  color: var(--color-18);
}

.post-card:hover h2 {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero {
  padding: 2.75rem 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-43);
  background: var(--color-11);
}

.page-hero-inner {
  max-width: var(--site-width);
  margin: 0 auto;
}

.page-hero h1 {
  font: var(--font-2-section);
  font-weight: 500;
  margin: 0 0 0.75rem;
  color: var(--color-45);
}

.page-hero--loud h1 {
  text-transform: uppercase;
}

.page-hero:not(.page-hero--loud) h1 {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  line-height: 1.25;
  text-transform: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  font: var(--font-7);
  color: var(--color-18);
  max-width: 65ch;
}

.about-layout {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .about-layout {
    grid-template-columns: minmax(0, 360px) 1fr;
    align-items: start;
  }
}

.about-layout__photo {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.about-layout__photo img {
  border-radius: 0;
}

.about-layout .prose {
  margin: 0;
  padding: 0;
  max-width: none;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.prose h2 {
  font: var(--font-5);
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-45);
}

.prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font: var(--font-8);
  font-weight: 700;
  color: var(--color-45);
}

.prose p,
.prose li {
  font: var(--font-8);
  color: var(--color-45);
}

.prose ul {
  padding-left: 1.25rem;
}

.figure {
  margin: 2rem 0;
}

.figure figcaption {
  margin-top: 0.5rem;
  font: var(--font-8);
  color: var(--color-18);
}

.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

label {
  font: var(--font-8);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0;
  border: 1px solid var(--color-12);
  font: var(--font-8);
  background: #fff;
  color: var(--color-15);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font: var(--font-8);
  color: var(--color-18);
  margin-top: 0.75rem;
}

/* —— Home: contact strip above footer (two columns, top rule) —— */
.home-contact {
  background: var(--color-11);
  border-top: 1px solid var(--color-43);
}

.home-contact-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
}

.home-contact-col {
  padding: 2.75rem 1.25rem 3rem;
}

.home-contact-col--info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.home-contact-details {
  margin: 0;
}

.home-contact-firm {
  margin: 0 0 0.85rem;
  font: var(--font-5);
  font-weight: 600;
  color: var(--color-15);
}

.home-contact-line {
  margin: 0 0 0.3rem;
  font: var(--font-8);
  color: var(--color-18);
}

.home-contact-line a {
  color: var(--color-18);
  text-decoration: none;
}

.home-contact-line a:hover {
  text-decoration: underline;
}

.home-contact-address {
  margin: 0.65rem 0 0;
  font: var(--font-8);
  line-height: 1.55;
}

.home-contact-address a {
  color: var(--color-15);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-contact-address a:hover {
  color: var(--color-18);
}

.home-contact-cta {
  margin-top: clamp(2.75rem, 7vw, 4.25rem);
}

.home-contact-heading {
  margin: 0 0 1rem;
  font: var(--font-5);
  font-weight: 500;
  color: var(--color-15);
}

.home-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.85rem;
  font: var(--font-8);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--color-36);
  background: var(--color-15);
  border: 2px solid var(--color-15);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-contact-btn:hover {
  background: var(--color-36);
  color: var(--color-15);
}

.home-contact-col--media {
  padding: 0;
  min-height: 220px;
  border-top: 1px solid var(--color-43);
}

.home-contact-col--media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

@media (min-width: 720px) {
  .home-contact-inner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(52vh, 520px);
  }

  .home-contact-col--info {
    padding: 3rem 2.25rem 3.25rem 1.25rem;
  }

  .home-contact-col--media {
    border-top: none;
    border-left: 1px solid var(--color-43);
    min-height: 0;
  }

  .home-contact-col--media img {
    min-height: 100%;
  }
}

.site-footer {
  border-top: 1px solid var(--color-43);
  padding: 2rem 1.25rem;
  background: var(--color-11);
}

.footer-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font: var(--font-8);
  color: var(--color-18);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--color-18);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--color-11);
    border-bottom: 1px solid var(--color-43);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 1rem;
    align-items: flex-start;
  }
}
