:root {
      --gold: #BF9B5C;
      --yellow: #BF9B5C;
      --yellow-soft: #E5CEA3;
      --yellow-pale: #F6F0E5;
      --ink: #1A2332;
      --ink-2: #26354A;
      --muted: #697485;
      --paper: #F5F2EB;
      --white: #ffffff;
      --line: rgba(26, 35, 50, 0.12);
      --shadow: 0 24px 80px rgba(26, 35, 50, 0.14);
      --radius-xl: 42px;
      --radius-lg: 28px;
      --radius-md: 18px;
      --max: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.8;
      letter-spacing: 0.025em;
      overflow-x: hidden;
    }

    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea { font: inherit; }
    button { color: inherit; }
    img, svg { max-width: 100%; display: block; }
    .container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }

    .site-header {
      position: absolute;
      top: 28px;
      left: 0;
      right: 0;
      z-index: 20;
    }
    .site-header.scrolled {
      transform: none;
    }
    .header-inner {
      min-height: 108px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 18px 34px 16px;
      margin: 0 auto;
      width: min(calc(100% - 56px), 1060px);
      border-radius: 30px;
      border: none;
      background: linear-gradient(180deg, rgba(26,35,50,.995) 0%, rgba(26,35,50,.97) 100%);
      box-shadow: 0 18px 42px rgba(8, 14, 28, .16), inset 0 1px 0 rgba(255,255,255,.03);
    }
    .header-inner::before {
      content: "";
      position: absolute;
      inset: -14px;
      border-radius: 42px;
      background: radial-gradient(circle at center, rgba(191,155,92,.12) 0%, rgba(191,155,92,.03) 42%, rgba(191,155,92,0) 72%);
      z-index: -1;
      filter: blur(10px);
      pointer-events: none;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      padding: 4px 14px;
      position: relative;
    }
    .brand::after { content: none; }
    .brand-logo {
      width: 300px;
      height: 92px;
      object-fit: contain;
      display: block;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      filter: saturate(.97) contrast(1.01) drop-shadow(0 4px 12px rgba(0,0,0,.08));
    }
    .brand-jp {
      display: block;
      color: var(--muted);
      font-size: 8px;
      font-weight: 800;
      letter-spacing: .18em;
    }
    .nav { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px; font-size: 13px; font-weight: 800; color: var(--white); letter-spacing: .06em; }
    .nav a { position: relative; }
    .nav a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -7px;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background: var(--yellow);
      transition: width .2s ease;
    }
    .nav a:not(.nav-cta):hover::after { width: 100%; }
    .nav-cta {
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #D0AF71 0%, #B98F4D 100%);
      color: var(--ink);
      box-shadow: 0 10px 24px rgba(191,155,92,.24);
    }
    .menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: rgba(255,255,255,.12); box-shadow: none; cursor: pointer; backdrop-filter: blur(8px); }
    .menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--white); transition: transform .2s, opacity .2s; }

    .hero {
      position: relative;
      min-height: 920px;
      padding: 236px 0 120px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 15% 20%, rgba(191,155,92,.18), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(191,155,92,.10), transparent 24%),
        linear-gradient(135deg, #172131 0%, #1A2332 56%, #212C40 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(26,35,50,.06) 0%, rgba(26,35,50,0) 18%, rgba(26,35,50,0) 74%, rgba(21,31,45,.66) 100%);
    }
    .hero::after {
      content: "";
      position: absolute;
      width: 440px;
      height: 440px;
      border: 1px solid rgba(191,155,92,.10);
      border-radius: 50%;
      right: -190px;
      bottom: 60px;
      filter: blur(.2px);
    }
    .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 60px; }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.72);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .18em;
    }
    .hero-kicker::before { content: ""; width: 36px; height: 3px; border-radius: 10px; background: var(--yellow); }
    h1 {
      margin: 24px 0 28px;
      max-width: 11.5em;
      font-size: clamp(50px, 6.4vw, 82px);
      line-height: 1.13;
      letter-spacing: -.055em;
      font-weight: 900;
      color: var(--white);
    }
    .highlight {
      position: relative;
      color: var(--white);
      display: inline-block;
      z-index: 1;
    }
    .highlight::after {
      content: "";
      position: absolute;
      left: -4px;
      right: -6px;
      bottom: 7px;
      height: .32em;
      background: var(--yellow);
      border-radius: 6px;
      z-index: -1;
      transform: rotate(-1deg);
    }
    .hero-copy { max-width: 680px; color: rgba(236,240,247,.84); font-size: 17px; line-height: 2.05; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
    .btn {
      min-height: 58px;
      padding: 0 25px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 900;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-dark { background: linear-gradient(180deg, #D0AF71 0%, #B98F4D 100%); color: var(--ink); box-shadow: 0 14px 34px rgba(191,155,92,.28); }
    .btn-yellow { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.16); box-shadow: none; }
    .btn-outline { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--white); }
    .arrow { width: 18px; height: 18px; }

    .hero-art {
      min-height: 610px;
      position: relative;
      display: grid;
      place-items: center;
      border-radius: 42px;
      background:
        linear-gradient(160deg, rgba(255,255,255,.02), rgba(255,255,255,.035)),
        linear-gradient(135deg, rgba(26,35,50,.18), rgba(26,35,50,.04));
      border: 1px solid rgba(191,155,92,.08);
      box-shadow: 0 26px 70px rgba(10,17,32,.20);
      overflow: hidden;
    }
    .hero-art::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,35,50,.10) 0%, rgba(26,35,50,0) 30%, rgba(26,35,50,.16) 100%);
      pointer-events: none;
    }
    .hero-art::after {
      content: "";
      position: absolute;
      inset: -80px;
      background: radial-gradient(circle at 50% 50%, rgba(191,155,92,.08), rgba(191,155,92,0) 65%);
      pointer-events: none;
    }
    .orb {
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: linear-gradient(145deg, #D7B873, #B98F4D);
      right: -40px;
      top: 48px;
      box-shadow: inset 0 0 0 1px rgba(29,28,24,.04), 0 40px 100px rgba(244,200,63,.22);
    }
    .orb::before,
    .orb::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(29,28,24,.18);
    }
    .orb::before { inset: 54px; }
    .orb::after { inset: 116px; }
    .hero-monogram {
      position: relative;
      z-index: 2;
      font-family: Georgia, serif;
      font-size: clamp(180px, 22vw, 300px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -.08em;
      color: #f5d58d;
      transform: translateX(-10px);
    }
    .art-card {
      position: absolute;
      z-index: 3;
      width: 230px;
      padding: 20px 22px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(250,248,243,.95), rgba(245,239,229,.92));
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 50px rgba(12, 20, 35, .12);
    }
    .art-card.top { top: 45px; left: -18px; }
    .art-card.bottom { right: -10px; bottom: 55px; }
    .art-label { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
    .art-value { margin-top: 8px; font-size: 19px; line-height: 1.45; font-weight: 900; }
    .art-rule { width: 42px; height: 3px; margin-top: 13px; border-radius: 10px; background: var(--yellow); }
    .scroll-cue {
      position: absolute;
      left: 30px;
      bottom: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.6);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .18em;
      transform: rotate(-90deg);
      transform-origin: left center;
    }
    .scroll-cue::before { content: ""; width: 42px; height: 1px; background: rgba(255,255,255,.4); }

    section { padding: 120px 0; }
    .section-kicker { color: #A98044; font-size: 12px; font-weight: 900; letter-spacing: .2em; }
    h2 { margin: 12px 0 20px; font-size: clamp(36px, 4.8vw, 58px); line-height: 1.25; letter-spacing: -.04em; }
    .section-copy { color: var(--muted); font-size: 16px; }

    .about { background: linear-gradient(180deg, #182233 0%, #1A2332 100%); color: var(--white); position: relative; overflow: hidden; margin-top: -1px; }
    .about::before { content: "A"; position: absolute; right: -30px; top: -150px; color: rgba(255,255,255,.025); font-family: Georgia,serif; font-size: 760px; line-height: 1; }
    .about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; position: relative; z-index: 1; }
    .about .section-kicker { color: var(--yellow); }
    .about h2 { max-width: 470px; }
    .about-copy { color: #c7d0dd; font-size: 17px; line-height: 2.1; }
    .about-copy strong { color: var(--white); }
    .purpose-list { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; overflow: hidden; }
    .purpose-item { min-height: 210px; padding: 28px; background: rgba(255,255,255,.04); backdrop-filter: blur(6px); }
    .purpose-num { color: var(--yellow); font-family: Georgia, serif; font-size: 18px; }
    .purpose-item h3 { margin: 35px 0 10px; font-size: 18px; }
    .purpose-item p { margin: 0; color: #9ea9ba; font-size: 13px; }

    .business-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 58px; }
    .business-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(270px, auto)); gap: 18px; }
    .business-card {
      position: relative;
      padding: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.65);
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .business-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(29,28,24,.08); }
    .business-card.featured { grid-row: 1 / 3; background: linear-gradient(135deg, #1A2332 0%, #243044 100%); color: var(--white); border-color: transparent; min-height: 560px; }
    .business-number { font-family: Georgia,serif; font-size: 15px; font-weight: 800; }
    .business-card h3 { margin: 46px 0 14px; font-size: 28px; line-height: 1.45; letter-spacing: -.03em; }
    .business-card p { margin: 0; max-width: 500px; color: var(--muted); font-size: 14px; }
    .business-card.featured p { color: rgba(236,240,247,.78); }
    .service-name { margin-top: 50px; font-size: clamp(42px, 6vw, 72px); line-height: 1; font-weight: 900; letter-spacing: -.06em; }
    .service-sub { margin-top: 10px; font-size: 12px; font-weight: 900; letter-spacing: .18em; color: var(--yellow-soft); }
    .business-graphic { position: absolute; width: 250px; height: 250px; right: -52px; bottom: -62px; border: 1px solid rgba(191,155,92,.28); border-radius: 50%; }
    .business-graphic::before { content: ""; position: absolute; inset: 54px; border: 1px solid rgba(191,155,92,.28); border-radius: 50%; }
    .tiny-tag { display: inline-flex; margin-top: 28px; padding: 7px 11px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: .12em; }

    .vision { padding-top: 60px; }
    .vision-panel {
      padding: 82px;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, #fbf7ee 0%, #f6efe0 100%);
      border: 1px solid rgba(154,118,19,.12);
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 80px;
      align-items: center;
    }
    .vision-quote { font-size: clamp(38px, 4.8vw, 60px); line-height: 1.36; font-weight: 900; letter-spacing: -.045em; }
    .vision-copy { color: var(--muted); }
    .values { margin-top: 38px; display: grid; gap: 14px; }
    .value { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding-top: 18px; border-top: 1px solid var(--line); }
    .value:first-child { border-top: 0; padding-top: 0; }
    .value-num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--yellow-soft); font-weight: 900; }
    .value h3 { margin: 0 0 3px; font-size: 16px; }
    .value p { margin: 0; color: var(--muted); font-size: 13px; }

    .message { background: linear-gradient(180deg, #F6F2EA 0%, #FEFDFC 60%, #FFFFFF 100%); }
    .message-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 78px; align-items: stretch; }
    .portrait {
      position: relative;
      min-height: 620px;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, #1A2332 0%, #1C2738 100%);
      overflow: hidden;
      box-shadow: 0 28px 80px rgba(26,35,50,.12);
      isolation: isolate;
    }
    .portrait-inner {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
    }
    .portrait-placeholder {
      width: 68%;
      aspect-ratio: 4 / 5;
      border-radius: 999px 999px 28px 28px;
      background: rgba(255,255,255,.54);
      border: 1px dashed rgba(29,28,24,.24);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 35px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }
    .portrait-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 52% 36%;
      transform: scale(1.015);
      filter: saturate(.86) contrast(.98) brightness(.94);
    }
    .portrait::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(26,35,50,.92) 0%, rgba(26,35,50,.34) 11%, transparent 26%, transparent 74%, rgba(26,35,50,.32) 89%, rgba(26,35,50,.96) 100%),
        linear-gradient(180deg, rgba(26,35,50,.48) 0%, transparent 18%, transparent 66%, rgba(26,35,50,.78) 100%);
      box-shadow: inset 0 0 56px rgba(26,35,50,.26);
    }
    .portrait::after {
      content: "";
      position: absolute;
      inset: 1px;
      z-index: 3;
      pointer-events: none;
      border-radius: calc(var(--radius-xl) - 1px);
      border: 1px solid rgba(191,155,92,.10);
    }
    .portrait-note { position: absolute; z-index: 4; left: 28px; bottom: 24px; font-size: 10px; font-weight: 900; letter-spacing: .16em; color: var(--white); }
    .message-content { padding: 26px 0; }
    .message-content h2 { margin-bottom: 36px; }
    .message-text { color: var(--muted); font-size: 16px; line-height: 2.15; }
    .message-text p { margin: 0 0 22px; }
    .signature { margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
    .signature-role { color: var(--muted); font-size: 11px; font-weight: 800; }
    .signature-name { margin-top: 4px; font-size: 22px; font-weight: 900; letter-spacing: .08em; }
    .signature-en { font-family: Georgia,serif; color: #b0aca1; font-style: italic; }

    .company { background: linear-gradient(135deg, #151F2D 0%, #1A2332 100%); color: var(--white); }
    .company .section-kicker { color: var(--yellow); }
    .company-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: 90px; }
    .company-intro { color: #bcc6d3; }
    .company-table { border-top: 1px solid rgba(255,255,255,.16); }
    .company-row { display: grid; grid-template-columns: 180px 1fr; gap: 25px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
    .company-label { color: #9eabbd; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
    .company-value { font-size: 14px; }

    .news-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; }
    .news-list { border-top: 1px solid var(--line); }
    .news-item { padding: 25px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 120px 1fr 24px; gap: 20px; align-items: center; }
    .news-date { color: var(--muted); font-size: 11px; font-weight: 800; }
    .news-title { font-size: 14px; font-weight: 800; }
    .news-arrow { font-size: 20px; }

    .contact { padding-top: 40px; }
    .contact-panel {
      position: relative;
      padding: 78px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #1A2332 0%, #212C3F 100%);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 60px;
      align-items: center;
      box-shadow: 0 18px 42px rgba(10,17,32,.08);
    }
    .contact-panel::after { content: "A"; position: absolute; right: -50px; bottom: -210px; font-family: Georgia,serif; font-size: 520px; line-height: 1; color: rgba(191,155,92,.12); }
    .contact-copy, .contact-action { position: relative; z-index: 1; }
    .contact h2 { margin-top: 0; color: var(--white); }
    .contact-copy p { max-width: 580px; color: rgba(236,240,247,.78); }
    .contact-email-line { margin-top: 22px; color: var(--yellow-soft) !important; font-size: 13px; letter-spacing: .08em; }
    .contact-action { display: flex; justify-content: flex-end; }
    .contact-button { min-width: 260px; min-height: 68px; border-radius: 999px; background: linear-gradient(180deg, #D0AF71 0%, #B98F4D 100%); color: var(--ink); display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-weight: 900; box-shadow: 0 18px 42px rgba(10,17,32,.24); }

    footer { padding: 70px 0 30px; background: #1A2332; color: var(--white); }
    .footer-main { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.10); }
    .footer-brand .brand-word { font-size: 26px; }
    .footer-message { margin-top: 18px; max-width: 380px; color: rgba(236,240,247,.72); font-size: 13px; }
    .footer-brand .brand { padding: 0; }
    .footer-brand .brand-logo { width: 280px; height: auto; filter: saturate(.97) contrast(1.01); }
    .footer-nav { display: grid; grid-template-columns: repeat(2, 150px); gap: 12px 32px; font-size: 12px; font-weight: 800; }
    .footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(236,240,247,.56); font-size: 10px; }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    @media (max-width: 1000px) {
      .header-inner { width: min(calc(100% - 40px), 980px); padding: 16px 24px 14px; }
      .brand-logo { width: 260px; height: 82px; }
      .nav { gap: 18px; }
      .hero-grid, .about-grid, .company-grid, .message-grid, .vision-panel, .contact-panel { gap: 48px; }
      .hero-art { min-height: 540px; }
      .orb { width: 450px; height: 450px; }
      .business-grid { grid-template-columns: 1fr 1fr; }
      .business-card.featured { grid-row: auto; grid-column: 1 / 3; min-height: 470px; }
    }

    @media (max-width: 820px) {
      .container { width: min(calc(100% - 32px), var(--max)); }
      .site-header { top: 18px; }
      .header-inner { min-height: 74px; width: min(calc(100% - 24px), var(--max)); padding: 14px 18px; gap: 10px; }
      .brand-logo { width: 210px; height: 66px; }
      .menu-button { backdrop-filter: none; background: rgba(255,255,255,.08); }
      .menu-button { display: block; position: absolute; right: 16px; top: 16px; z-index: 102; }
      .nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        background: linear-gradient(135deg, #151F2D 0%, #1A2332 100%);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        font-size: 18px;
        transform: translateX(100%);
        transition: transform .3s ease;
      }
      .nav.open { transform: none; }
      .menu-button.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
      .menu-button.open span:nth-child(2) { opacity: 0; }
      .menu-button.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
      .hero { min-height: auto; padding: 150px 0 84px; }
      .hero-grid, .about-grid, .business-head, .vision-panel, .message-grid, .company-grid, .news-grid, .contact-panel { grid-template-columns: 1fr; }
      .hero-grid { gap: 35px; }
      .hero-art { min-height: 480px; }
      .orb { left: 50%; right: auto; transform: translateX(-50%); width: 410px; height: 410px; }
      .art-card.top { left: 0; }
      .art-card.bottom { right: 0; }
      .scroll-cue { display: none; }
      section { padding: 88px 0; }
      .purpose-list { grid-template-columns: 1fr; }
      .purpose-item { min-height: auto; }
      .business-head { margin-bottom: 35px; }
      .business-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .business-card.featured { grid-column: auto; min-height: 460px; }
      .vision-panel, .contact-panel { padding: 50px 38px; }
      .portrait { min-height: 560px; }
      .contact-action { justify-content: flex-start; }
      .footer-main { flex-direction: column; }
    }

    @media (max-width: 560px) {
      .brand-logo { width: 170px; height: 56px; }
      h1 { font-size: 45px; }
      .hero-copy { font-size: 15px; }
      .hero-art { min-height: 410px; }
      .orb { width: 330px; height: 330px; top: 36px; }
      .hero-monogram { font-size: 180px; }
      .art-card { width: 185px; padding: 15px; }
      .art-card.top { top: 12px; }
      .art-card.bottom { bottom: 28px; }
      .art-value { font-size: 15px; }
      section { padding: 72px 0; }
      .about-grid { gap: 40px; }
      .business-card { padding: 28px; }
      .business-card h3 { margin-top: 32px; font-size: 23px; }
      .service-name { margin-top: 42px; font-size: 48px; }
      .vision-panel { padding: 36px 25px; }
      .vision-quote { font-size: 34px; }
      .portrait { min-height: 460px; }
      .portrait-placeholder { width: 76%; }
      .message-content { padding: 0; }
      .company-row { grid-template-columns: 1fr; gap: 6px; }
      .news-item { grid-template-columns: 86px 1fr 18px; gap: 12px; }
      .contact-panel { padding: 38px 25px; }
      .contact-button { min-width: 100%; }
      .footer-nav { grid-template-columns: repeat(2, 1fr); }
      .footer-bottom { flex-direction: column; }
    }
