/*
Theme Name: ITSUMO Corp
Theme URI: https://corp.itsumo-jp.com/
Author: 合同会社ITSUMO
Author URI: https://corp.itsumo-jp.com/
Description: 合同会社ITSUMOコーポレートサイト専用テーマ。ITSUMOキッチンサイトとトンマナを統一したラグジュアリーミニマルデザイン。
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
Text Domain: itsumo-corp
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --cream:        #F8F6F2;
  --cream-dark:   #EDE9E1;
  --navy:         #0F1B3C;
  --navy-light:   #1A2F5E;
  --gold:         #B8960C;
  --gold-light:   #D4AF37;
  --charcoal:     #1C1C1C;
  --text:         #2A2A2A;
  --text-muted:   #6B6B6B;
  --text-on-dark: rgba(255,255,255,0.85);
  --white:        #FFFFFF;

  --font-serif:   'Cormorant Garamond', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --font-sans:    'Jost', 'Noto Sans JP', -apple-system, sans-serif;

  --max-width:    1200px;
  --section-py:   100px;
  --section-py-sm: 60px;
  --transition:   0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--navy);
}

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--text-on-dark);
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section--dark .section-label { color: var(--gold-light); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 24px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 2;
  max-width: 560px;
}
.section--dark .section-desc { color: var(--text-on-dark); opacity: 0.8; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* Divider line */
.divider-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 246, 242, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img {
  height: 36px;
  width: auto;
}
.site-logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--navy);
}

/* Nav menu */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.primary-nav ul {
  display: flex;
  gap: 32px;
}

.primary-nav ul li a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white) !important;
  border: 1px solid var(--navy);
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--navy) !important;
  border-color: var(--navy);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.hero-bg img,
.hero-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* 動画は pointer-events を無効にして操作不可に */
.hero-bg .hero-video {
  pointer-events: none;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,27,60,0.1) 0%,
    rgba(15,27,60,0.4) 60%,
    rgba(15,27,60,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 2;
  max-width: 400px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 1;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-tagline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.mission-text {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--cream-dark);
  padding: var(--section-py) 0;
}

.services-header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover { background: var(--white); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.service-card:hover .service-number { color: rgba(184,150,12,0.15); }

.service-category {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 28px;
}

.service-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--transition);
}
.service-link::after {
  content: '→';
  transition: transform var(--transition);
}
.service-link:hover { color: var(--gold); }
.service-link:hover::after { transform: translateX(4px); }

/* ============================================================
   COMPANY INFO
   ============================================================ */
.company {
  background: var(--navy);
  padding: var(--section-py) 0;
}

.company-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.company-info dt {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
  margin-top: 20px;
}
.company-info dt:first-child { margin-top: 0; }
.company-info dd {
  font-size: 14px;
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  background: var(--cream);
  padding: var(--section-py) 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.news-card:hover {
  box-shadow: 0 8px 32px rgba(15,27,60,0.1);
}

.news-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--cream-dark);
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-thumb img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 24px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.news-card-date {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.news-card-cat {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,150,12,0.08);
  padding: 2px 8px;
}

.news-card-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* No thumbnail fallback */
.news-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  font-family: var(--font-serif);
  font-size: 32px;
  color: rgba(15,27,60,0.1);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'ITSUMO';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 200px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section .section-desc {
  color: var(--text-on-dark);
  opacity: 0.75;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-nav-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   SINGLE / PAGE CONTENT
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
}

.page-hero .breadcrumbs {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.page-hero .breadcrumbs a {
  color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumbs a:hover { color: var(--gold-light); }

.content-area {
  padding: 80px 0;
}

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  color: var(--text);
}

.entry-content h2 {
  font-size: 26px;
  margin: 2em 0 0.8em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cream-dark);
}

.entry-content h3 {
  font-size: 20px;
  margin: 1.8em 0 0.6em;
  color: var(--navy);
}

.entry-content p { margin-bottom: 1.6em; }

.entry-content ul, .entry-content ol {
  list-style: initial;
  padding-left: 1.5em;
  margin-bottom: 1.6em;
}

.entry-content img {
  border-radius: 0;
  margin: 2em 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }
  .container { padding: 0 32px; }
  .header-inner { padding: 0 32px; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .company-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }

  /* Nav */
  .primary-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul { flex-direction: column; align-items: center; gap: 24px; }
  .primary-nav ul li a { font-size: 16px; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .news-list { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ============================================================
   SERVICE PAGE TEMPLATE
   ============================================================ */
.service-page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  margin-top: 70px; /* fixed headerの高さ分 */
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.service-hero-bg img,
.service-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,27,60,0.1) 0%,
    rgba(15,27,60,0.65) 100%
  );
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-hero-en {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--service-color, var(--gold-light));
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-hero-en::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

.service-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 480px;
}

/* コンテンツエリア */
.service-content-area {
  padding: 80px 0;
  background: var(--cream);
}

.service-content-area .entry-content {
  max-width: 860px;
}

/* 特徴リスト */
.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.service-feature-item {
  padding: 32px;
  background: var(--white);
  border-top: 2px solid var(--service-color, var(--gold));
}

.service-feature-icon {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--service-color, var(--gold));
  line-height: 1;
  margin-bottom: 16px;
}

.service-feature-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-feature-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

/* 戻るリンク */
.service-back-section {
  padding: 32px 0 60px;
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
}

.service-back-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.service-back-link:hover { color: var(--gold); }

/* サービスページのresponsive */
@media (max-width: 768px) {
  .service-features { grid-template-columns: 1fr; }
  .service-page-hero { height: 60vh; padding-bottom: 48px; }
}

/* ============================================================
   PAGE HERO — ラベル追加
   ============================================================ */
.page-hero-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Philosophy */
.about-philosophy {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.about-philosophy-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.about-philosophy-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.about-philosophy-text p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-muted);
  margin-bottom: 1.4em;
}

/* Company Info Table */
.about-info {
  background: var(--white);
  padding: var(--section-py) 0;
}

.about-info-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-table {
  width: 100%;
}

.about-table-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--cream-dark);
}

.about-table-row:first-child {
  border-top: 1px solid var(--cream-dark);
}

.about-table dt {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 22px 24px 22px 0;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
}

.about-table dd {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  padding: 22px 0;
  border-left: 1px solid var(--cream-dark);
  padding-left: 32px;
}

.about-table dd a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-table dd a:hover { color: var(--gold-light); }

.about-business-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-business-list li {
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  font-size: 14px;
  line-height: 1.9;
}
.about-business-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* Services Grid on About */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.about-service-item {
  display: block;
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background var(--transition);
  border-bottom: 2px solid transparent;
}
.about-service-item:hover {
  background: rgba(255,255,255,0.08);
  border-bottom-color: var(--gold);
  color: inherit;
}

.about-service-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.about-service-cat {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.about-service-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.about-service-url {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}

/* About responsive */
@media (max-width: 1024px) {
  .about-info-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .about-table-row { grid-template-columns: 1fr; }
  .about-table dd { border-left: none; padding-left: 0; padding-top: 4px; }
  .about-table dt { padding-bottom: 0; }
  .about-services-grid { grid-template-columns: 1fr; }
}
