

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white:        #ffffff;
  --sunburst:     #fffdf8;
  --off-white:    #f7f8fa;
  --border:       #e2e6ea;
  --border-dark:  #c8cdd4;
  --ink:          #0a0c0f;
  --ink-muted:    #42484f;
  --ink-subtle:   #8a9199;
  --accent:       #c0392b;
  --max-w:        960px;
  --font-sans:    'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--sunburst);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header & Nav ─────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 52px;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.logo {
  padding-top: 7px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.logo-img {
  height: 20px;
}

.tagline {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-subtle);
  margin-top: 0.15rem;
}

nav {
  display: flex;
  height: 100%;
}

nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 1.25rem;
  height: 100%;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-subtle);
  border-left: 1px solid var(--border);
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

nav a:hover { color: var(--ink); background: var(--off-white); }
nav a:hover::after { transform: scaleX(1); }

/* ── Main ─────────────────────────────────────────────────── */
main {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  width: 100%;
}

/* ── Hero Section ─────────────────────────────────────────── */
/**
.hero {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-dark);
  align-items: start;
}

.label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 0.2rem;
}

.hero h1 {
  grid-column: 1;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.6rem;
}

.intro {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.85;
  padding-top: 0.2rem;
}
**/
.hero {
  position: relative;
  width: 100%;
  margin-bottom: 5rem;
  padding: 7rem 2rem;
  text-align: center;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay so text stays legible over any image */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.hero-inner h1 {
  @import url=(https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Cormorant:wght@400&display=swap);
  font-family: 'Inter';
}

.label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.intro {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}
/* ── Service Cards ────────────────────────────────────────── */
.services { display: flex; flex-direction: column; }

.service-card {
  display: grid;
  grid-template-columns: 100px 1fr 200px;
  gap: 0 4rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-card:last-child { border-bottom: none; }

.service-header {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.75rem;
  /*gap: 0.5rem;*/
  margin-bottom: 1rem;
}

.icon {
  font-size: 6rem;
  width: 6rem;
  line-height: 1;
  display: block;
  margin-top: 2rem;
  margin-bottom: 1.37rem;
  filter: grayscale(1);
  align-items: center;
  opacity: 0.75;
}

.service-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  margin-top: 1.76rem;
  filter: grayscale(15%);
}

.number {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.service-header h2 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--ink);
  text-transform: uppercase;
}

.service-card > div > p {
  font-size: 0.94rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ── Benefits ─────────────────────────────────────────────── */
.benefits-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 0.7rem;
  display: block;
}

.benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.benefits ul li {
  font-size: 0.9rem;
  color: var(--ink-muted);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
}

.benefits ul li:last-child { border-bottom: 1px solid var(--border); }

.benefits ul li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
  align-self: flex-start;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background-color: var(--off-white);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  header { padding: 0 1.5rem; }
  nav a { padding: 0 0.9rem; }
  main { padding: 3rem 1.5rem 4rem; }

  /**
  .hero { grid-template-columns: 1fr; gap: 1rem 0; }
  .intro { grid-column: 1; grid-row: auto; }
  **/
  .hero { padding: 5rem 1.5rem; }


  .service-card { grid-template-columns: 1fr; gap: 1rem 0; border-bottom: 3px solid var(--border)}
  .service-header { flex-direction: row; align-items: baseline; gap: 0.75rem; }

  .icon {display: none;}
  .service-img {display: none;}
}


/* ── Active nav state ─────────────────────────────────────── */
nav a.active {
  color: var(--ink);
  background: var(--off-white);
}

nav a.active::after {
  transform: scaleX(1);
}

/* ── Page Header ──────────────────────────────────────────── */
.page-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.page-header h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 0.6rem;
}

/* ── Page Grid ────────────────────────────────────────────── */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 5rem;
  align-items: start;
  margin: 0 100px;
}

/* ── Contact Section ──────────────────────────────────────── */
.contact-section {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: calc(52px + 3rem);
}

.contact-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-block:first-child {
  padding-top: 0;
}

.block-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 0.85rem;
}

address {
  font-style: normal;
  font-size: 0.93rem;
  color: var(--ink-muted);
  line-height: 1.9;
}

/* ── Contact Table ────────────────────────────────────────── */
.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table tr {
  border-top: 1px solid var(--border);
}

.contact-table tr:last-child {
  border-bottom: 1px solid var(--border);
}

.contact-table td {
  font-size: 0.9rem;
  color: var(--ink-muted);
  padding: 0.45rem 0;
  vertical-align: top;
}

.contact-key {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-subtle);
  letter-spacing: 0.02em;
  width: 90px;
  padding-right: 1rem;
  white-space: nowrap;
}

.contact-table a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.contact-table a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Notice Section ───────────────────────────────────────── */
.notice-section {
  border-left: 1px solid var(--border);
  padding-left: 5rem;
}

.notice-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.notice-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
}

.notice-ref {
  font-size: 0.78rem;
  color: var(--ink-subtle);
  font-style: italic;
  line-height: 1.5;
}

.notice-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.notice-block:last-child {
  border-bottom: none;
}

.notice-block p {
  font-size: 0.91rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

.notice-block p + p {
  margin-top: 0.75rem;
}

.notice-block a {
  color: var(--ink-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.notice-block a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 860px) {
  .page-grid {
    grid-template-columns: 1fr;
    gap: 4rem 0;
    margin: 0;
  }

  .contact-section {
    position: static;
  }

  .notice-section {
    border-left: none;
    border-top: 2px solid var(--border-dark);
    padding-left: 0;
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  .contact-key {
    width: 72px;
  }
}

/* ── CTA ──────────────────────────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--border-dark);
  background: var(--white);
}

.cta p {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}

.cta a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--accent);
  padding: 0.65rem 1.5rem;
  transition: opacity 0.15s ease;
}

.cta a:hover {
  opacity: 0.85;
}
