/* ===================================================================
   NORA DAVET — Landing stil sistemi
   "Refined Luxury Atelier" · cream + altın · Cormorant + Italianno + Inter
   =================================================================== */

:root {
    --nd-bg:          #FAF8F4;
    --nd-bg-alt:      #F3EDE3;
    --nd-surface:     #FFFFFF;
    --nd-text:        #2C2420;
    --nd-text-soft:   #5A4F47;
    --nd-text-muted:  #998B7E;
    --nd-accent:      #BE9B63;   /* altın */
    --nd-accent-deep: #A07E47;
    --nd-accent-soft: #E7DCC8;
    --nd-line:        #E8E1D6;
    --nd-dark:        #221C17;
    --nd-dark-soft:   #2E2720;

    --nd-h:      'Cormorant Garamond', Georgia, serif;
    --nd-b:      'Inter', 'Segoe UI', sans-serif;
    --nd-script: 'Italianno', cursive;

    --nd-shadow:    0 18px 50px -24px rgba(44,36,32,.30);
    --nd-shadow-lg: 0 40px 90px -40px rgba(44,36,32,.45);
    --nd-ease:      cubic-bezier(.22,.8,.26,1);
    --nd-wrap:      1180px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
    font-family: var(--nd-b);
    color: var(--nd-text);
    background: var(--nd-bg);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--nd-accent-soft); color: var(--nd-text); }

.nd-wrap { width: 100%; max-width: var(--nd-wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.nd-script {
    font-family: var(--nd-script);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    color: var(--nd-accent);
    line-height: 1; display: block;
}
.nd-script--light { color: var(--nd-accent-soft); }

body.is-loading { overflow: hidden; height: 100vh; }

/* ===== Reveal animasyonu (perde kalkınca staggered) ===== */
.nd-reveal { opacity: 0; transform: translateY(22px); }
body.is-ready .nd-reveal {
    opacity: 1; transform: none;
    transition: opacity .9s var(--nd-ease) var(--d,0s), transform .9s var(--nd-ease) var(--d,0s);
}
@media (prefers-reduced-motion: reduce) { .nd-reveal { opacity: 1 !important; transform: none !important; } }

/* ===================================================================
   AÇILIŞ PERDESİ
   =================================================================== */
.nd-curtain {
    position: fixed; inset: 0; z-index: 2000;
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(190,155,99,.10), transparent 60%),
        linear-gradient(180deg, #FBF9F5, #F1E9DC);
    transition: transform 1s var(--nd-ease), opacity .9s ease;
}
.nd-curtain.is-up { transform: translateY(-101%); opacity: 0; }
.nd-curtain__mark { text-align: center; }
.nd-curtain__name, .nd-curtain__accent {
    font-family: var(--nd-h); font-weight: 500;
    font-size: clamp(2.6rem, 7vw, 4.4rem); letter-spacing: .04em;
    display: inline-block; opacity: 0; transform: translateY(10px);
    animation: ndUp .9s var(--nd-ease) forwards;
}
.nd-curtain__accent { font-style: italic; color: var(--nd-accent); animation-delay: .15s; }
.nd-curtain__rule {
    display: block; width: 0; height: 1px; margin: 18px auto 14px;
    background: var(--nd-accent); animation: ndRule .9s var(--nd-ease) .4s forwards;
}
.nd-curtain__sub {
    display: block; font-family: var(--nd-script); font-size: 1.7rem;
    color: var(--nd-accent-deep); opacity: 0; animation: ndFade .8s ease .65s forwards;
}
@keyframes ndUp   { to { opacity: 1; transform: none; } }
@keyframes ndFade { to { opacity: 1; } }
@keyframes ndRule { to { width: 120px; } }

/* ===================================================================
   HEADER
   =================================================================== */
.nd-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: background .4s ease, box-shadow .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
.nd-header.is-scrolled {
    background: rgba(250,248,244,.86);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--nd-line);
}
.nd-header__inner { display: flex; align-items: center; gap: 24px; height: 78px; }
.nd-logo {
    font-family: var(--nd-h); font-size: 1.7rem; font-weight: 600;
    letter-spacing: .03em; line-height: 1; margin-right: auto;
}
.nd-logo__accent { font-style: italic; color: var(--nd-accent); }
.nd-header__login { font-size: .82rem; letter-spacing: .04em; color: var(--nd-text-soft); white-space: nowrap; transition: color .25s ease; }
.nd-header__login:hover { color: var(--nd-accent-deep); }

/* ===== Giriş / Kayıt sayfaları (Nora Davet görünümü) ===== */
.nd-auth-body { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px;
    background: radial-gradient(ellipse at 50% 0%, rgba(190,155,99,.10), transparent 55%), var(--nd-bg); }
.nd-auth { width: 100%; max-width: 430px; background: var(--nd-surface); border: 1px solid var(--nd-line); border-radius: 20px; padding: clamp(2rem,5vw,2.8rem); box-shadow: var(--nd-shadow-lg); text-align: center; }
.nd-auth__brand { font-family: var(--nd-h); font-weight: 600; font-size: 1.7rem; letter-spacing: .03em; color: var(--nd-text); display: inline-block; margin-bottom: 1.3rem; }
.nd-auth__brand em { font-style: italic; color: var(--nd-accent); }
.nd-auth__title { font-family: var(--nd-h); font-weight: 600; font-size: 1.7rem; margin-bottom: .4rem; }
.nd-auth__sub { color: var(--nd-text-soft); font-size: .9rem; line-height: 1.6; margin-bottom: 1.6rem; }
.nd-auth__alert { background: #fdf1ef; border: 1px solid #f0c8c1; color: #9a3b32; border-radius: 12px; padding: .85rem 1rem; margin-bottom: 1.2rem; text-align: left; font-size: .87rem; }
.nd-auth__alert p { margin: .15rem 0; }
.nd-auth__form { display: flex; flex-direction: column; gap: 1rem; text-align: left; }
.nd-auth__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.nd-auth__field { display: flex; flex-direction: column; gap: 6px; }
.nd-auth__field label { font-size: .76rem; letter-spacing: .05em; color: var(--nd-text-soft); }
.nd-auth__field input { width: 100%; padding: 12px 14px; border: 1px solid var(--nd-line); border-radius: 12px; font-family: var(--nd-b); font-size: .95rem; color: var(--nd-text); background: var(--nd-bg); transition: border-color .2s, box-shadow .2s; }
.nd-auth__field input:focus { outline: none; border-color: var(--nd-accent); box-shadow: 0 0 0 3px rgba(190,155,99,.15); }
.nd-auth__form .nd-btn { margin-top: .4rem; }
.nd-auth__foot { margin-top: 1.5rem; padding-top: 1.3rem; border-top: 1px solid var(--nd-line); font-size: .88rem; color: var(--nd-text-soft); display: flex; flex-direction: column; gap: .55rem; }
.nd-auth__foot a { color: var(--nd-accent-deep); }
.nd-auth__foot a:hover { color: var(--nd-accent); }
.nd-auth__back { font-size: .82rem; color: var(--nd-muted) !important; margin-top: .2rem; }
@media (max-width: 420px) { .nd-auth__row { grid-template-columns: 1fr; } }
.nd-logo--light { color: #fff; }
.nd-logo--light .nd-logo__accent { color: var(--nd-accent); }
.nd-nav { display: flex; gap: 30px; }
.nd-nav a {
    font-size: .82rem; letter-spacing: .04em; color: var(--nd-text-soft);
    position: relative; padding: 4px 0; transition: color .25s ease;
}
.nd-nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
    background: var(--nd-accent); transition: width .3s var(--nd-ease);
}
.nd-nav a:hover { color: var(--nd-text); }
.nd-nav a:hover::after { width: 100%; }

/* ===== Butonlar ===== */
.nd-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: .86rem; font-weight: 500; letter-spacing: .03em;
    padding: 14px 28px; border-radius: 100px; cursor: pointer;
    border: 1px solid transparent; transition: all .3s var(--nd-ease);
    white-space: nowrap;
}
.nd-btn--sm { padding: 10px 20px; font-size: .8rem; }
.nd-btn--full { width: 100%; }
.nd-btn--gold { background: var(--nd-accent); color: #fff; box-shadow: 0 10px 26px -12px rgba(190,155,99,.7); }
.nd-btn--gold:hover { background: var(--nd-accent-deep); transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(160,126,71,.8); }
.nd-btn--ghost { border-color: var(--nd-line); color: var(--nd-text); background: transparent; }
.nd-btn--ghost:hover { border-color: var(--nd-accent); color: var(--nd-accent-deep); }
.nd-btn--light { background: #fff; color: var(--nd-dark); }
.nd-btn--light:hover { transform: translateY(-2px); box-shadow: var(--nd-shadow); }

.nd-burger { display: flex; width: 40px; height: 40px; border: none; background: none; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nd-burger span { width: 22px; height: 1.5px; background: var(--nd-text); transition: .3s var(--nd-ease); }
body.nd-menu-open .nd-burger span:first-child { transform: translateY(3.7px) rotate(45deg); }
body.nd-menu-open .nd-burger span:last-child { transform: translateY(-3.7px) rotate(-45deg); }

/* ===== Marka kartlari (drawer ust): Nora Atelier + Nora Davet ===== */
.nd-brands { display: flex; flex-direction: column; gap: 10px; }
.nd-davet-card {
    position: relative; display: block; padding: 15px 18px; text-align: center;
    border: 1px solid rgba(190, 155, 99, .30); border-radius: 3px;
    background: linear-gradient(158deg, #FCF8F0 0%, #F2E7D2 100%);
}
.nd-davet-card__c { position: absolute; width: 9px; height: 9px; border: 1.5px solid var(--nd-accent); transition: width .25s var(--nd-ease), height .25s var(--nd-ease); }
.nd-davet-card__c--tl { top: 6px; left: 6px; border-right: none; border-bottom: none; }
.nd-davet-card__c--tr { top: 6px; right: 6px; border-left: none; border-bottom: none; }
.nd-davet-card__c--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; }
.nd-davet-card__c--br { bottom: 6px; right: 6px; border-left: none; border-top: none; }
.nd-davet-card:hover .nd-davet-card__c { width: 13px; height: 13px; }
.nd-davet-card__name { display: block; font-family: var(--nd-h); font-weight: 500; font-size: 1.1rem; color: var(--nd-text); letter-spacing: .15em; text-transform: uppercase; line-height: 1.2; }
.nd-davet-card__tag { display: block; margin-top: 5px; font-family: var(--nd-h); font-style: italic; font-size: .82rem; color: var(--nd-accent); letter-spacing: .02em; }

/* ===== Sol açılır menü (off-canvas drawer) ===== */
.nd-drawer-overlay {
    position: fixed; inset: 0; z-index: 1400;
    background: rgba(34, 28, 23, .45);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; transition: opacity .35s var(--nd-ease);
}
.nd-drawer-overlay.is-open { opacity: 1; }
.nd-drawer {
    position: fixed; top: 0; left: 0; bottom: 0; z-index: 1500;
    width: min(87vw, 372px);
    display: flex; flex-direction: column; gap: 20px;
    padding: 22px 24px 30px;
    background: var(--nd-bg); border-right: 1px solid var(--nd-line);
    box-shadow: 40px 0 90px -50px rgba(44, 36, 32, .5);
    transform: translateX(-101%); transition: transform .42s var(--nd-ease);
    overflow-y: auto;
}
.nd-drawer.is-open { transform: none; }
.nd-drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--nd-line); }
.nd-drawer__brand { display: inline-flex; }
.nd-drawer__logo { display: block; width: 92px; height: auto; border-radius: 12px; box-shadow: 0 6px 18px rgba(60,40,20,.16); }
.nd-drawer__close { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--nd-line); border-radius: 50%; background: none; color: var(--nd-text-soft); cursor: pointer; transition: all .25s var(--nd-ease); flex: none; }
.nd-drawer__close:hover { border-color: var(--nd-accent); color: var(--nd-accent); }
.nd-drawer__close svg { width: 17px; height: 17px; }
.nd-drawer__nav { display: flex; flex-direction: column; }
.nd-drawer__nav a { padding: 14px 2px; border-bottom: 1px solid var(--nd-line); font-family: var(--nd-h); font-size: 1.15rem; color: var(--nd-text); transition: color .2s ease, padding-left .2s var(--nd-ease); }
.nd-drawer__nav a:hover { color: var(--nd-accent); padding-left: 8px; }
.nd-drawer__cta { margin-top: 4px; }
body.nd-drawer-open { overflow: hidden; }

/* ===================================================================
   HERO
   =================================================================== */
.nd-hero { position: relative; padding: clamp(130px, 18vh, 190px) 0 clamp(70px, 10vh, 110px); overflow: hidden; }
.nd-hero__glow {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(60% 50% at 78% 18%, rgba(190,155,99,.14), transparent 70%),
        radial-gradient(50% 50% at 8% 88%, rgba(231,220,200,.5), transparent 70%);
}
.nd-hero__grid {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.nd-hero__title {
    font-family: var(--nd-h); font-weight: 500;
    font-size: clamp(3rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -.01em;
    margin: 14px 0 22px;
}
.nd-hero__title em { font-style: italic; color: var(--nd-accent); }
.nd-hero__lead { font-size: 1.08rem; color: var(--nd-text-soft); max-width: 30em; margin-bottom: 32px; }
.nd-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.nd-hero__trust { margin-top: 30px; font-size: .82rem; color: var(--nd-text-muted); display: flex; align-items: center; gap: 10px; }
.nd-hero__trust-dot { width: 7px; height: 7px; border-radius: 50%; background: #6CA87E; box-shadow: 0 0 0 4px rgba(108,168,126,.18); }

/* ===== Hero davetiye kartı ===== */
.nd-hero__art { position: relative; display: flex; justify-content: center; }
.nd-invite {
    position: relative; width: min(370px, 84vw); background: linear-gradient(170deg, #FFFEFB, #F7F0E4);
    border-radius: 4px; padding: 14px; box-shadow: var(--nd-shadow-lg);
}
.nd-invite--float { animation: ndFloat 6s ease-in-out infinite; }
@keyframes ndFloat { 0%,100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-14px) rotate(.6deg); } }
.nd-invite__frame {
    border: 1px solid var(--nd-accent); outline: 3px solid #fff; outline-offset: -7px;
    padding: 40px 30px 34px; text-align: center; position: relative;
}
.nd-invite__frame::before, .nd-invite__frame::after {
    content: ''; position: absolute; width: 14px; height: 14px; border: 1px solid var(--nd-accent);
}
.nd-invite__frame::before { top: 7px; left: 7px; border-right: none; border-bottom: none; }
.nd-invite__frame::after { bottom: 7px; right: 7px; border-left: none; border-top: none; }
.nd-invite__kicker { font-size: .62rem; letter-spacing: .32em; color: var(--nd-text-muted); text-transform: uppercase; }
.nd-invite__mono { display: block; font-family: var(--nd-h); font-size: 2.1rem; color: var(--nd-accent); margin: 16px 0 8px; }
.nd-invite__mono i { font-style: italic; font-size: 1.3rem; opacity: .7; margin: 0 2px; }
.nd-invite__names { font-family: var(--nd-h); font-weight: 500; font-size: 2.5rem; line-height: 1.1; color: var(--nd-text); }
.nd-invite__amp { display: block; font-family: var(--nd-script); font-size: 1.7rem; color: var(--nd-accent); font-weight: 400; margin: -2px 0; }
.nd-invite__rule { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0; }
.nd-invite__rule span { width: 46px; height: 1px; background: var(--nd-accent); position: relative; }
.nd-invite__rule::before { content: '❦'; color: var(--nd-accent); font-size: .85rem; }
.nd-invite__date { font-family: var(--nd-h); font-size: 1.18rem; color: var(--nd-text); }
.nd-invite__place { font-size: .78rem; letter-spacing: .12em; color: var(--nd-text-muted); text-transform: uppercase; margin-top: 4px; }
.nd-invite__msg { font-style: italic; color: var(--nd-text-soft); font-size: .9rem; margin: 18px 0 16px; }
.nd-invite__rsvp { display: inline-block; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--nd-accent-deep); border: 1px solid var(--nd-accent-soft); border-radius: 100px; padding: 8px 18px; }

.nd-hero__chip {
    position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    box-shadow: var(--nd-shadow); border-radius: 14px; padding: 11px 16px; font-size: .78rem; color: var(--nd-text-soft);
    animation: ndFloat 6s ease-in-out infinite;
}
.nd-hero__chip strong { font-family: var(--nd-h); font-size: 1.2rem; color: var(--nd-accent-deep); margin-right: 4px; }
.nd-hero__chip--rsvp { top: 8%; left: -6%; animation-delay: .6s; }
.nd-hero__chip--share { bottom: 10%; right: -4%; animation-delay: 1.4s; }

/* ===================================================================
   GENEL BÖLÜM + BAŞLIK
   =================================================================== */
.nd-section { padding: clamp(70px, 11vh, 130px) 0; }
.nd-section--alt { background: var(--nd-bg-alt); }
.nd-head { text-align: center; max-width: 620px; margin: 0 auto clamp(44px, 6vh, 70px); }
.nd-head__title { font-family: var(--nd-h); font-weight: 500; font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.1; margin-top: 6px; }
.nd-head__sub { color: var(--nd-text-soft); margin-top: 14px; font-size: 1.02rem; }

/* ===== Nasıl çalışır ===== */
.nd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.nd-step { text-align: center; position: relative; }
.nd-step__num { font-family: var(--nd-h); font-style: italic; font-size: 3.4rem; color: var(--nd-accent); opacity: .85; line-height: 1; }
.nd-step__title { font-family: var(--nd-h); font-size: 1.5rem; font-weight: 600; margin: 10px 0 8px; }
.nd-step__text { color: var(--nd-text-soft); font-size: .96rem; max-width: 24em; margin: 0 auto; }

/* ===================================================================
   ŞABLON VİTRİNİ
   =================================================================== */
.nd-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.nd-tpl { background: var(--nd-surface); border-radius: 14px; overflow: hidden; border: 1px solid var(--nd-line); transition: transform .4s var(--nd-ease), box-shadow .4s var(--nd-ease); }
.nd-tpl:hover { transform: translateY(-8px); box-shadow: var(--nd-shadow-lg); }
.nd-tpl__preview { aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; padding: 26px; position: relative; }
.nd-tpl__card {
    width: 100%; height: 100%; border: 1px solid currentColor; border-radius: 3px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    text-align: center; padding: 18px; position: relative;
}
.nd-tpl__card::after { content: ''; position: absolute; inset: 6px; border: 1px solid currentColor; opacity: .4; border-radius: 2px; }
.nd-tpl__kicker { font-size: .56rem; letter-spacing: .28em; opacity: .8; }
.nd-tpl__names { font-family: var(--nd-h); font-size: 1.55rem; font-weight: 500; color: var(--nd-text); }
.nd-tpl__line { width: 34px; height: 1px; background: currentColor; }
.nd-tpl__date { font-size: .68rem; letter-spacing: .16em; color: var(--nd-text-soft); }
.nd-tpl__meta { padding: 18px 22px 22px; border-top: 1px solid var(--nd-line); display: flex; flex-direction: column; gap: 2px; }
.nd-tpl__cat { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--nd-accent-deep); }
.nd-tpl__title { font-family: var(--nd-h); font-size: 1.4rem; font-weight: 600; }
/* tema renkleri — kart çerçevesi currentColor */
.nd-tpl--rose   .nd-tpl__preview { background: linear-gradient(160deg,#F6EBEC,#EAD5D8); color: #B07A82; }
.nd-tpl--gold   .nd-tpl__preview { background: linear-gradient(160deg,#F7EEDF,#EAD5B6); color: #B0894F; }
.nd-tpl--henna  .nd-tpl__preview { background: linear-gradient(160deg,#F0E7DC,#DCC3B2); color: #A06A50; }
.nd-tpl--royal  .nd-tpl__preview { background: linear-gradient(160deg,#E7EAF1,#CBD3E2); color: #5E6E92; }
.nd-tpl--pastel .nd-tpl__preview { background: linear-gradient(160deg,#F4ECF1,#E4D2E0); color: #A981A1; }
.nd-tpl--noir   .nd-tpl__preview { background: linear-gradient(160deg,#34302A,#211D18); color: #C7A86E; }
.nd-tpl--noir .nd-tpl__names { color: #F3ECDD; }
.nd-tpl--noir .nd-tpl__date  { color: #C9BBA4; }
/* İllüstrasyon şablon vitrini — gerçek görsel önizleme */
.nd-tpl--img .nd-tpl__preview { padding: 0; aspect-ratio: 760 / 1070; background: #f0ece6; }
.nd-tpl__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--nd-ease); }
.nd-tpl--img:hover .nd-tpl__img { transform: scale(1.04); }
.nd-gallery__more { text-align: center; margin-top: 40px; color: var(--nd-text-muted); font-size: .96rem; }
.nd-gallery__more strong { color: var(--nd-accent-deep); }

/* ===================================================================
   ÖZELLİKLER
   =================================================================== */
.nd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 38px); }
.nd-feature { display: flex; gap: 16px; align-items: flex-start; }
.nd-feature__icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--nd-accent-soft); color: var(--nd-accent-deep);
}
.nd-feature__icon svg { width: 20px; height: 20px; }
.nd-feature__title { font-family: var(--nd-h); font-size: 1.32rem; font-weight: 600; margin-bottom: 4px; }
.nd-feature__text { color: var(--nd-text-soft); font-size: .93rem; }

/* ===================================================================
   PAKETLER
   =================================================================== */
.nd-plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.nd-plan {
    background: var(--nd-surface); border: 1px solid var(--nd-line); border-radius: 16px;
    padding: 34px 26px; display: flex; flex-direction: column; text-align: center; transition: transform .35s var(--nd-ease), box-shadow .35s var(--nd-ease);
}
.nd-plan:hover { transform: translateY(-6px); box-shadow: var(--nd-shadow); }
.nd-plan--featured { border-color: var(--nd-accent); box-shadow: 0 30px 70px -40px rgba(190,155,99,.6); position: relative; }
.nd-plan__badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--nd-accent); color: #fff; font-size: .66rem; letter-spacing: .08em;
    padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.nd-plan__name { font-family: var(--nd-h); font-size: 1.5rem; font-weight: 600; }
.nd-plan__price { font-family: var(--nd-h); font-size: 3rem; font-weight: 600; line-height: 1.2; margin: 6px 0 18px; }
.nd-plan__price span { font-size: 1.3rem; color: var(--nd-text-muted); vertical-align: super; margin-right: 2px; }
.nd-plan__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; color: var(--nd-text-soft); font-size: .92rem; }
.nd-plan__list li { padding-bottom: 10px; border-bottom: 1px solid var(--nd-line); }
.nd-plan__list li:last-child { border-bottom: none; }
.nd-plan .nd-btn { margin-top: auto; }
.nd-plans__note { text-align: center; margin-top: 34px; color: var(--nd-text-muted); font-size: .92rem; }
.nd-plans__note a { color: var(--nd-accent-deep); border-bottom: 1px solid var(--nd-accent-soft); }

/* ===================================================================
   NORA ATELIER CROSS-SELL
   =================================================================== */
.nd-cross { background: var(--nd-dark); color: #EFE9DF; position: relative; overflow: hidden; }
.nd-cross__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 40px; padding: clamp(64px, 9vh, 110px) 0; }
.nd-cross__title { font-family: var(--nd-h); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 8px 0 16px; }
.nd-cross__lead { color: rgba(239,233,223,.72); max-width: 34em; margin-bottom: 28px; }
.nd-cross__mark { justify-self: end; text-align: center; font-family: var(--nd-h); line-height: .9; color: rgba(190,155,99,.16); user-select: none; }
.nd-cross__mark span { display: block; font-size: clamp(3rem, 7vw, 5.4rem); letter-spacing: .04em; }
.nd-cross__mark-sub { font-size: clamp(1.2rem, 3vw, 2rem) !important; letter-spacing: .5em !important; }

/* ===================================================================
   FOOTER
   =================================================================== */
.nd-footer { background: var(--nd-dark-soft); color: #CFC6BA; }
.nd-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: clamp(50px, 7vh, 80px) 0 40px; }
.nd-footer__brand .nd-logo { font-size: 1.7rem; }
.nd-footer__tag { margin-top: 12px; font-size: .9rem; color: rgba(207,198,186,.6); max-width: 26em; }
.nd-footer__col { display: flex; flex-direction: column; gap: 12px; }
.nd-footer__h { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--nd-accent); margin-bottom: 4px; }
.nd-footer__col a { font-size: .92rem; color: rgba(207,198,186,.78); transition: color .25s ease; }
.nd-footer__col a:hover { color: #fff; }
.nd-footer__bottom { padding: 22px 0 30px; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: rgba(207,198,186,.5); }
.nd-footer__bottom a { color: var(--nd-accent); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 940px) {
    .nd-hero__grid { grid-template-columns: 1fr; text-align: center; }
    .nd-hero__lead { margin-left: auto; margin-right: auto; }
    .nd-hero__cta, .nd-hero__trust { justify-content: center; }
    .nd-hero__art { margin-top: 36px; }
    .nd-gallery, .nd-features { grid-template-columns: repeat(2, 1fr); }
    .nd-plans { grid-template-columns: repeat(2, 1fr); }
    .nd-cross__inner { grid-template-columns: 1fr; text-align: center; }
    .nd-cross__lead { margin-left: auto; margin-right: auto; }
    .nd-cross__mark { justify-self: center; margin-top: 10px; }
    .nd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
    .nd-nav { position: fixed; inset: 78px 0 auto; flex-direction: column; gap: 0; background: rgba(250,248,244,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--nd-line); padding: 12px 24px 24px; transform: translateY(-130%); transition: transform .4s var(--nd-ease); }
    body.nd-menu-open .nd-nav { transform: none; }
    .nd-nav a { padding: 14px 0; border-bottom: 1px solid var(--nd-line); font-size: .95rem; }
    .nd-header .nd-btn--sm, .nd-header__login { display: none; }
    .nd-burger { display: flex; }
    .nd-steps { grid-template-columns: 1fr; gap: 36px; }
    .nd-gallery, .nd-features, .nd-plans, .nd-footer__grid { grid-template-columns: 1fr; }
    .nd-hero__chip--rsvp { left: 0; }
    .nd-hero__chip--share { right: 0; }
}

/* Acilis perdesi logosu */
.nd-curtain__logo { width: clamp(168px, 32vw, 250px); height: auto; display: block; margin: 0 auto; opacity: 0; transform: translateY(12px) scale(.95); animation: ndUp 1s var(--nd-ease) forwards; }
.nd-curtain__mark .nd-curtain__sub { margin-top: 2px; }

/* acilis logosu buyutuldu */
.nd-curtain__logo { width: clamp(220px, 42vw, 360px); }

/* cross-sell bandi Nora Atelier logosu (koyu zemin) */
.nd-cross__logo { width: clamp(200px, 26vw, 300px); height: auto; opacity: 0.95; }

/* Yukari cik butonu (scroll ilerleme halkasi) */
.nd-totop { position: fixed; right: clamp(18px,3vw,34px); bottom: clamp(18px,3vw,34px); z-index: 90; width: 52px; height: 52px; border: none; background: #fff; border-radius: 50%; box-shadow: var(--nd-shadow); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--nd-text); transition: transform .3s var(--nd-ease), box-shadow .3s var(--nd-ease); }
.nd-totop[hidden] { display: none; }
.nd-totop:hover { transform: translateY(-3px); box-shadow: var(--nd-shadow-lg); }
.nd-totop:hover .nd-totop__arrow { color: var(--nd-accent-deep); }
.nd-totop__ring { position: absolute; inset: 0; width: 52px; height: 52px; transform: rotate(-90deg); }
.nd-totop__track { fill: none; stroke: var(--nd-line); stroke-width: 2.5; }
.nd-totop__bar { fill: none; stroke: var(--nd-accent); stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset .1s linear; }
.nd-totop__arrow { width: 18px; height: 18px; position: relative; z-index: 1; transition: color .25s ease; }
