
:root {
    --dark: #171815;
    --dark-soft: #24251f;
    --light: #f3efe7;
    --white: #ffffff;
    --accent: #b8905c;
    --accent-dark: #8d6a3e;
    --text: #22231f;
    --muted: #6f716b;
    --line: rgba(23, 24, 21, .13);
    --radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;
    font-family: "Manrope", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.section-space {
    padding: 110px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-label::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-label.light {
    color: var(--accent);
}

.section-title {
    max-width: 850px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 4.8vw, 68px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.05em;
}

.section-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

.navbar-shell {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    padding: 22px 0;
}

.navbar {
    min-height: 78px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(17,18,15,.50);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.brand-text small {
    margin-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 30px 4px !important;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 20px;
    left: 50%;
    height: 1px;
    content: "";
    background: var(--accent);
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    right: 4px;
    left: 4px;
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s ease;
}

.header-cta:hover {
    border-color: var(--accent);
    color: var(--dark);
    background: var(--accent);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
}

.about-hero {
    position: relative;
    min-height: 740px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-bg::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(15,16,13,.95) 0%, rgba(15,16,13,.72) 45%, rgba(15,16,13,.22) 100%),
        linear-gradient(0deg, rgba(15,16,13,.80) 0%, transparent 55%);
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to right, #000, transparent 82%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 210px 0 82px;
}

.breadcrumb-custom {
    display: flex;
    margin: 0 0 34px;
    padding: 0;
    align-items: center;
    gap: 13px;
    list-style: none;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.breadcrumb-custom li + li::before {
    margin-right: 13px;
    color: var(--accent);
    content: "/";
}

.about-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(54px, 7.4vw, 108px);
    font-weight: 600;
    line-height: .95;
    letter-spacing: -.06em;
}

.about-hero h1 span {
    display: block;
    color: var(--accent);
}

.about-hero-bottom {
    margin-top: 48px;
}

.about-hero-description {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.9;
}

.hero-index {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hero-index span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    color: var(--accent);
    font-size: 17px;
}

.about-intro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 16%, rgba(184,144,92,.13), transparent 27%),
        linear-gradient(135deg, #f6f3ed 0%, #ece7dd 100%);
}

.about-intro::before {
    position: absolute;
    top: 70px;
    right: -130px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(141,106,62,.15);
    border-radius: 50%;
    content: "";
}

.about-visual {
    position: relative;
    min-height: 720px;
    padding: 24px 58px 64px 0;
}

.about-main-image {
    position: absolute;
    top: 0;
    right: 58px;
    bottom: 64px;
    left: 0;
    overflow: hidden;
    border-radius: 180px 26px 26px 26px;
    box-shadow: 0 36px 90px rgba(31,29,24,.18);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s ease;
}

.about-visual:hover .about-main-image img {
    transform: scale(1.035);
}

.about-main-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 45%, rgba(18,19,16,.65));
}

.about-experience {
    position: absolute;
    z-index: 4;
    top: 36px;
    right: 18px;
    display: grid;
    width: 126px;
    height: 126px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--dark);
    box-shadow: 0 18px 42px rgba(21,22,19,.25);
}

.about-experience::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: inherit;
    content: "";
}

.about-experience-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-experience strong {
    display: block;
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-size: 29px;
    line-height: 1;
}

.about-experience span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.6);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-image-note {
    position: absolute;
    z-index: 3;
    right: 92px;
    bottom: 92px;
    left: 34px;
    max-width: 360px;
    color: #fff;
}

.about-image-note span {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.about-image-note strong {
    font-family: "Montserrat", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
}

.about-content {
    padding-left: 64px;
}

.about-lead {
    position: relative;
    margin: 34px 0 24px;
    padding-left: 28px;
    color: var(--dark);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.75;
}

.about-lead::before {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 3px;
    border-radius: 10px;
    content: "";
    background: var(--accent);
}

.content-html {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

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

.about-detail {
    background: #fff;
}

.detail-head {
    margin-bottom: 58px;
}

.detail-head .section-text {
    max-width: 500px;
    margin-left: auto;
}

.detail-panel {
    position: relative;
    min-height: 520px;
    padding: 48px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--light);
}

.detail-panel.dark {
    color: #fff;
    border-color: var(--dark);
    background:
        linear-gradient(rgba(23,24,21,.92), rgba(23,24,21,.92)),
        url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=84") center/cover no-repeat;
}

.detail-number {
    display: block;
    margin-bottom: 88px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.detail-panel.dark .detail-number {
    color: var(--accent);
}

.detail-panel h3 {
    max-width: 520px;
    margin: 0 0 24px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.detail-panel p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.detail-panel.dark p {
    color: rgba(255,255,255,.58);
}

.detail-circle {
    position: absolute;
    right: -110px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(141,106,62,.18);
    border-radius: 50%;
}

.detail-panel.dark .detail-circle {
    border-color: rgba(184,144,92,.22);
}

.explanation {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--dark-soft);
}

.explanation::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .38;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 86px 86px;
}

.explanation-inner {
    position: relative;
    z-index: 2;
}

.explanation-copy {
    max-width: 940px;
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 2;
}

.explanation-copy h3 {
    margin: 42px 0 18px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
}

.explanation-list {
    display: grid;
    margin: 48px 0 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
}

.explanation-list li {
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}

.explanation-list span {
    display: block;
    margin-bottom: 26px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.explanation-list strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
}

.explanation-list small {
    color: rgba(255,255,255,.48);
    font-size: 13px;
    line-height: 1.7;
}


/* TARİHÇE */
.history {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.history::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .42;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 88px 88px;
}

.history::after {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(184,144,92,.16);
    border-radius: 50%;
    content: "";
}

.history-inner {
    position: relative;
    z-index: 2;
}

.history-head {
    margin-bottom: 72px;
}

.history-head .section-title {
    max-width: 900px;
}

.history-head .section-text {
    max-width: 510px;
    margin-left: auto;
    color: rgba(255,255,255,.52);
}

.history-line {
    position: relative;
}

.history-line::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 174px;
    width: 1px;
    content: "";
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(184,144,92,.55) 8%,
        rgba(184,144,92,.55) 92%,
        transparent
    );
}

.history-item {
    position: relative;
    display: grid;
    min-height: 190px;
    padding: 34px 0;
    grid-template-columns: 130px 58px 1fr 1.15fr;
    align-items: center;
    gap: 30px;
    border-bottom: 1px solid rgba(255,255,255,.11);
    transition: .35s ease;
}

.history-item:first-child {
    border-top: 1px solid rgba(255,255,255,.11);
}

.history-item::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: linear-gradient(90deg, rgba(184,144,92,.14), transparent 75%);
    transition: .35s ease;
}

.history-item:hover {
    padding-right: 24px;
    padding-left: 24px;
}

.history-item:hover::before {
    opacity: 1;
}

.history-item > * {
    position: relative;
    z-index: 2;
}

.history-year {
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(31px, 3vw, 46px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
}

.history-dot-wrap {
    display: grid;
    place-items: center;
}

.history-dot {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid rgba(184,144,92,.6);
    border-radius: 50%;
    background: var(--dark);
}

.history-dot::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--accent);
    box-shadow: 0 0 0 7px rgba(184,144,92,.08);
}

.history-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(23px, 2.4vw, 35px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.history-description {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.85;
}

.history-status {
    position: absolute;
    top: 30px;
    right: 0;
    color: rgba(255,255,255,.25);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.history-note {
    display: flex;
    margin-top: 50px;
    padding: 26px 30px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
}

.history-note p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: 14px;
    line-height: 1.8;
}

.history-note span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    white-space: nowrap;
    text-transform: uppercase;
}


/* TEMEL DEĞERLERİMİZ */
.core-values {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(184,144,92,.11), transparent 25%),
        linear-gradient(135deg, #f6f3ed 0%, #ece7dd 100%);
}

.core-values::before {
    position: absolute;
    top: 80px;
    left: -160px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(141,106,62,.13);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.core-values-inner {
    position: relative;
    z-index: 2;
}

.core-values-head {
    margin-bottom: 58px;
}

.core-values-intro {
    max-width: 490px;
    margin: 0 0 8px auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.core-values-layout {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 34px;
    align-items: stretch;
}

.core-values-feature {
    position: relative;
    min-height: 520px;
    padding: 42px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17,18,15,.10), rgba(17,18,15,.82)),
        url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=86") center/cover no-repeat;
    box-shadow: 0 30px 80px rgba(30,28,23,.16);
}

.core-values-feature::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(120deg, rgba(184,144,92,.16), transparent 55%);
}

.core-values-feature-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}

.core-values-feature-label {
    display: block;
    margin-bottom: auto;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.core-values-feature h3 {
    max-width: 420px;
    margin: 0 0 18px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(31px, 3.2vw, 50px);
    font-weight: 600;
    line-height: 1.07;
    letter-spacing: -.045em;
}

.core-values-feature p {
    max-width: 460px;
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 14px;
    line-height: 1.85;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.core-value-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.52);
    transition: .35s ease;
}

.core-value-card::before {
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 135px;
    height: 135px;
    border: 1px solid rgba(141,106,62,.15);
    border-radius: 50%;
    content: "";
    transition: .35s ease;
}

.core-value-card:hover {
    border-color: rgba(184,144,92,.42);
    background: rgba(255,255,255,.88);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(31,29,24,.08);
}

.core-value-card:hover::before {
    width: 175px;
    height: 175px;
    border-color: rgba(184,144,92,.28);
}

.core-value-number {
    display: block;
    margin-bottom: 54px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.core-value-card h3 {
    margin: 0 0 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.core-value-card p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.contact-cta {
    color: #fff;
    background: var(--accent-dark);
}

.contact-cta-inner {
    display: flex;
    min-height: 350px;
    padding: 60px 0;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta h2 {
    max-width: 800px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 5.2vw, 74px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-circle {
    display: grid;
    min-width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.44);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .35s ease;
}

.contact-circle:hover {
    color: var(--dark);
    background: #fff;
    transform: rotate(-8deg);
}

footer {
    padding: 76px 0 28px;
    color: #fff;
    background: var(--dark);
}

.footer-brand .brand {
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    line-height: 1.85;
}

.footer-title {
    margin-bottom: 22px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.35);
    font-size: 11px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .navbar {
        padding: 0 16px;
    }

    .navbar-collapse {
        margin: 12px -16px 0;
        padding: 12px 22px 22px;
        border-top: 1px solid rgba(255,255,255,.1);
        background: rgba(17,18,15,.96);
    }

    .navbar-nav .nav-link {
        padding: 14px 0 !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        margin-top: 14px;
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 82px 0;
    }

    .about-hero {
        min-height: 650px;
    }

    .about-visual {
        min-height: 650px;
        max-width: 680px;
        margin: 0 auto;
    }

    .about-content {
        padding: 52px 0 0;
    }

    .detail-head .section-text {
        margin: 30px 0 0;
    }

    .explanation-list {
        grid-template-columns: 1fr;
    }


    .core-values-intro {
        margin: 28px 0 0;
    }

    .core-values-layout {
        grid-template-columns: 1fr;
    }

    .core-values-feature {
        min-height: 440px;
    }

    .contact-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .navbar-shell {
        padding: 14px 0;
    }

    .navbar {
        min-height: 66px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .about-hero {
        min-height: 610px;
    }

    .about-hero-content {
        padding: 160px 0 48px;
    }

    .about-hero h1 {
        font-size: clamp(48px, 16vw, 74px);
    }

    .about-hero-bottom {
        margin-top: 32px;
    }

    .hero-index {
        margin-top: 28px;
    }

    .about-visual {
        min-height: 520px;
        padding: 0 34px 52px 0;
    }

    .about-main-image {
        right: 34px;
        bottom: 52px;
        border-radius: 110px 22px 22px 22px;
    }

    .about-experience {
        top: 18px;
        right: 0;
        width: 96px;
        height: 96px;
    }

    .about-experience strong {
        font-size: 22px;
    }

    .about-image-note {
        right: 70px;
        bottom: 72px;
        left: 22px;
    }

    .about-image-note strong {
        font-size: 15px;
    }

    .detail-panel {
        min-height: 410px;
        padding: 30px 24px;
    }

    .detail-number {
        margin-bottom: 68px;
    }

    .history-head .section-text {
        margin: 28px 0 0;
    }

    .history-line::before {
        left: 14px;
    }

    .history-item {
        min-height: 0;
        padding: 30px 0 30px 42px;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .history-item:hover {
        padding-right: 14px;
        padding-left: 54px;
    }

    .history-dot-wrap {
        position: absolute;
        top: 38px;
        left: 0;
    }

    .history-dot {
        width: 28px;
        height: 28px;
    }

    .history-year {
        font-size: 29px;
    }

    .history-status {
        position: static;
        margin-top: 5px;
    }

    .history-note {
        align-items: flex-start;
        flex-direction: column;
    }


    .core-values-feature {
        min-height: 390px;
        padding: 28px 24px;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    .core-value-card {
        min-height: 215px;
        padding: 25px 22px;
    }

    .core-value-number {
        margin-bottom: 40px;
    }

    .contact-circle {
        min-width: 120px;
        height: 120px;
    }
}
